i set a reference to microsoft internet controls and used this code:
Dim ie As New InternetExplorer
ie.Navigate "www.vbworld.com"
ie.Visible = True
I need to put the status of the page loading on my form.
any ideas?
thanks in advance.
Printable View
i set a reference to microsoft internet controls and used this code:
Dim ie As New InternetExplorer
ie.Navigate "www.vbworld.com"
ie.Visible = True
I need to put the status of the page loading on my form.
any ideas?
thanks in advance.
Hi there mate...
there are 3 events that are exposed for this...
- DownloadBegin
- ProgressChange
- Downloadcomplete
cheers
gaurav
thanks for those events. i'm new to vb. how should i use them? i want to change label1 to "done" when downloadcomplete is true or have label1 display the loading status of the page.
thanks