Results 1 to 3 of 3

Thread: VBA Coding for English/Spanish Google Translation Error

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Junior Member
    Join Date
    Apr 2015
    Posts
    2
    Rep Power
    0

    VBA Coding for English/Spanish Google Translation Error

    Today something happened and not sure why

    I have this code a simple one that was provided last year and has worked fine to translate cells from English to Spanish

    =IF(B12<>"",getGoogleTranslation(B12,"en","es"),"" )

    obviously if something is in Cell B12 it will translate that work into Spanish in the cell I place that code it ....the code I have in the module is as follows;

    Code:
    Public Function getGoogleTranslation(strSource As String, strSourceLang As String, strDestLang As String) As String 'Created by ShredDude
    '06 September 2010
    
    Dim strURL As String, x As String
    'English = "en"
    'Spanish = "es"
    strURL = "http://translate.google.com/translate_a/t?client=t&text=" & _
            Replace(strSource, " ", "%20") & _
            "&hl=en&sl=" & strSourceLang & _
            "&tl=" & strDestLang & "&multires=1&pc=0&rom=1&sc=1"
                 
    With CreateObject("msxml2.xmlhttp")
        .Open "get", strURL, False
        .send
        x = .responseText
    End With
            
    getGoogleTranslation = Replace(Replace(Split(x, """,""")(0), "[", ""), """", "")
            
    End Function
    The issue I am having now is that today when I opened the program all I see is =value signs, it appears that the code all of a sudden isn't working.....all the workbooks are acting the same

    I tried simply putting a simply sentence in a new workbook and that doesn't work either.....would you have any idea?

    it worked fine since I got the coding but not now .....any help please would be appreciated

    Tony
    Last edited by Admin; 04-09-2015 at 09:33 PM.

Similar Threads

  1. Replies: 30
    Last Post: 04-15-2019, 07:36 PM
  2. add an addition cell colour to coding
    By peter renton in forum Excel Help
    Replies: 2
    Last Post: 11-20-2014, 05:16 PM
  3. Excel VBA Run-time error '13' Type mismatch
    By mackypogi in forum Excel Help
    Replies: 5
    Last Post: 09-17-2013, 11:16 AM
  4. VBA Trick of the Week :: Tracking the Line Number Where Error Occurs - Erl
    By Transformer in forum Tips, Tricks & Downloads (No Questions)
    Replies: 0
    Last Post: 07-10-2013, 09:40 AM
  5. VBA - Excel: Disable Internet / Google
    By technicalupload in forum Excel Help
    Replies: 3
    Last Post: 10-06-2011, 09:18 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •