i am building a web browser i was woundering how i could put a progress bar in it.
Printable View
i am building a web browser i was woundering how i could put a progress bar in it.
You could use the ProgressChange Event of WebBrowser Control
For more info check out
http://msdn.microsoft.com/library/de...resschange.asp
You could add your own Progressbar.
VB Code:
Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long) On Error Resume Next Progressbar1.Min = 0 Progressbar1.Max = ProgressMax Progressbar1.Value = Progress End Sub
Thanks Very much, it works really well