我一直没有将对象引用设置为对象的实例'尝试使用Gecko导航时出错。其中一个建议是使用New关键字。但是在哪里和为什么?
Dim wbGecko As New GeckoWebBrowser
Dim i As Integer = 0
For i = 0 To lstPosts.Count - 1
wbGecko.Navigate("http://websta.me" & lstPosts.Item(i))
Do
If Not (wbGecko.IsBusy) Then
MessageBox.Show("Hello World!")
End If
Exit Do
Loop
Exit For
Next