Results 1 to 5 of 5

Thread: [RESOLVED]Determine When Webbrowser Component Finished Loading

Threaded View

  1. #1

    Thread Starter
    New Member
    Join Date
    Apr 2008
    Posts
    11

    [RESOLVED]Determine When Webbrowser Component Finished Loading

    Hi everyone! Here's my code:

    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)
    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?

    Thanks.
    Last edited by elemaeoh; May 2nd, 2008 at 04:54 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width