Loop不会导航我的webbrowser VB.NET

时间:2013-07-04 21:47:15

标签: vb.net

Dim item As String

For Each item In Me.ListBox1.Items

    Wait(2000)

    WebBrowser1.Navigate(item)

    Wait(8000)

    Timer1.Start()
Next

我正试图让它导航到每个项目

等待(8000)工作,计时器但导航不会

1 个答案:

答案 0 :(得分:0)

你可能需要做类似的事情: How to make WebBrowser wait till it loads fully?

基本上你需要等到文档完成加载才能进入下一个文档。

这是微软网站上的一个例子: http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.documentcompleted.aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1