hi,

I am creating a simple application which will fetch google search results URL in list box. I am using URI function.
Code:
 Dim results As Uri()
        results = c.GetResults("asd")
        For Each result As Uri In results
            ListBox1.Items.Add(result)
        Next
Here i am getting a null reference Error. i tried to use the keyword New but still same error. i can sort it out. plz help. i have another class and its object is c. I don have any error in coding. just runtime error.