Hi everyone! Here's my code:
Well, the progress bar works fantastic! The only problem is how my program can tell when a webpage has finished loading. Can anyone tell me what I should do?Code:Private Sub WebBrowser1_ProgressChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles WebBrowser1.ProgressChanged Me.ProgressBar1.Maximum = Convert.ToInt32(e.MaximumProgress) Me.ProgressBar1.Value = Convert.ToInt32(e.CurrentProgress)
Thanks.![]()




Reply With Quote