guys I've been suffering from this problem for 15 days. so help plz .:( :(
one thing comes always in my mind that the status bar of the webbrower is the form's .I dunno really .:(
Thanx a lot for your time
Printable View
guys I've been suffering from this problem for 15 days. so help plz .:( :(
one thing comes always in my mind that the status bar of the webbrower is the form's .I dunno really .:(
Thanx a lot for your time
Is this what you want?
Also, add a progress bar to your form.Code:Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.AxWebBrowser1.Navigate("www.vbworld.com")
End Sub
Private Sub AxWebBrowser1_ProgressChange(ByVal sender As Object, ByVal e As AxSHDocVw.DWebBrowserEvents2_ProgressChangeEvent) Handles AxWebBrowser1.ProgressChange
Me.ProgressBar1.Value = e.progress
End Sub
:D thanx for your replay I will try it right now
That's great job Lethal . One step and I'll be done.
first , when I write the site and hit enter the progress bar immediately show it's complete although the page is still downloading. So I want to substitute progress bar with Status bar.Maybe this would give me accurate progress of the download.
thank you so so much for this push:)