I download the GoogleTranslateAPI.dll file and add a link to it in my project. Now I took the text box and wrote "John" in it, took the shortcut and wanted it to say "John" in it, but in "French". So I wrote in the button_click event ....
private void button1_Click(object sender, EventArgs e) { string TT = Txt1.Text; Label1.Text=Google.API.Translate.Translator.Translate(TT, Google.API.Translate.Language.English,Google.API.Translate.Language.French); }
This gives an error saying that โTRANSFER DENIEDโ ... Can anyone say what I did wrong? This is a desktop application and will be disabled.
Dev ..
source share