Results 1 to 4 of 4

Thread: progress bar for web please help!!

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2001
    Posts
    364

    Exclamation progress bar for web please help!!

    i am building a web browser i was woundering how i could put a progress bar in it.
    Last edited by richsmith; Nov 7th, 2001 at 09:03 AM.

  2. #2
    Lively Member sjwesley's Avatar
    Join Date
    Sep 2001
    Location
    UK
    Posts
    73
    You could use the ProgressChange Event of WebBrowser Control

    For more info check out

    http://msdn.microsoft.com/library/de...resschange.asp
    A time to love, and a time to hate; a time of war, and a time of peace - Ec:3:8

  3. #3
    Matthew Gates
    Guest
    You could add your own Progressbar.


    VB Code:
    1. Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
    2.     On Error Resume Next
    3.     Progressbar1.Min = 0
    4.     Progressbar1.Max = ProgressMax
    5.     Progressbar1.Value = Progress
    6. End Sub

  4. #4

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2001
    Posts
    364
    Thanks Very much, it works really well

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