ポーリングでよければ例えば次のように取得することができます。
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim ie = CreateObject("InternetExplorer.Application")
ie.visible = True
ie.gohome()
While ie.statustext <> "ページが表示されました"
Debug.Print(ie.statustext)
Application.DoEvents()
End While
End Sub
2006/12/01(Fri) 18:58:43 編集(投稿者)
2006/12/01(Fri) 18:58:41 編集(投稿者)
Internet Explorerで,ステータスバー(最下部左の「ページが表示されました」などと出てくるところ)の、文字列を取り出したいのですが,どのようにしたらできますか?