Rachit95 / google-api-for-dotnet

Automatically exported from code.google.com/p/google-api-for-dotnet
0 stars 0 forks source link

Google Search API error's #99

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
So i got the latest version of the google api here and then i added this code 
to get the sites from google and add them to a listbox but i get errors

    Dim client As New GwebSearchClient("http://www.google.com")
        Dim results As IList(Of IWebResult) = client.Search("test", 400)
        For Each result As IWebResult In results
            ListBox1.Items.Add(result.Url)
        Next
        Me.Text = ListBox1.Items.Count

Error
Could not load file or assembly 'Newtonsoft.Json, Version=3.5.0.0, 
Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. 
The system cannot find the file specified.

i have net-fram at 4.5

Original issue reported on code.google.com by nexxozpr...@gmail.com on 24 May 2013 at 5:48