Results 1 to 5 of 5

Thread: prograss bar help!?!?!?!?!?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Location
    Ca
    Posts
    93
    I'm making a web browser. I wanted to know how I can get a progress bar to show how much longer the page needs to load. I have tried a bunch of things, they just don't work. HELP.
    Timbudtwo
    I have no life, only one with computers.

    VB 6.0 Enterprise Edition
    [hr]

  2. #2
    Guest
    See if this thread is of any assistance.

    http://forums.vb-world.net/showthrea...threadid=19377

  3. #3
    Guest
    Just use this if you just want to have it in words:

    Code:
    Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
    Label1.Caption = "Reading - " & Progress & " of " & ProgressMax & " bytes"
    End Sub
    OR for a progressbar:

    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

  4. #4

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Location
    Ca
    Posts
    93

    it's gone!!!!!!!

    well in the custom controls dialog box, can you tell me where a progress bar is because it's not on my toolbix at the moment.
    Timbudtwo
    I have no life, only one with computers.

    VB 6.0 Enterprise Edition
    [hr]

  5. #5

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Location
    Ca
    Posts
    93

    found it

    I found it. Anyway, you know that little icon in the upper right had corner that moves when your page is loading? Well, how do I add one of those little guy's. Yes thank you all who help out, your very helpful.
    Timbudtwo
    I have no life, only one with computers.

    VB 6.0 Enterprise Edition
    [hr]

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