|
-
Nov 29th, 2002, 07:09 PM
#1
Thread Starter
Sleep mode
-
Nov 29th, 2002, 07:55 PM
#2
PowerPoster
Is this what you want?
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
Also, add a progress bar to your form.
-
Nov 29th, 2002, 08:40 PM
#3
Thread Starter
Sleep mode
thanx for your replay I will try it right now
-
Nov 29th, 2002, 10:23 PM
#4
Thread Starter
Sleep mode
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|