VB 待機 Web ページの読み込みについて助けが必要です。1 つのボタン クリック => 1 つのページに移動して読み込みを待ち、1 つのラベル テキストを変更し、別のページに移動して読み込みを待ち、別のラベル テキストを変更し、別のページに移動して読み込みを待ち、ラベル テキストを変更します。私を助けてください、私はこのコードを試してみましたが、失敗しました...
Private Sub Button1_Click ...
WebBrowser1.Navigate("page1")
Label1.Text = "Loaded" 'but this show before the page loaded
WebBrowser1.Navigate("page2") 'this start loading before the page1 loaded
Label2.Text = "Loaded" 'but this show before the page loaded
WebBrowser1.Navigate("page3") 'this start loading before the page1 loaded
Label3.Text = "Loaded"
...
End Sub