Results 1 to 4 of 4

Thread: showing the status bar of the webbrowser

  1. #1

    Thread Starter
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    showing the status bar of the webbrowser

    guys I've been suffering from this problem for 15 days. so help plz .

    one thing comes always in my mind that the status bar of the webbrower is the form's .I dunno really .
    Thanx a lot for your time

  2. #2
    PowerPoster Lethal's Avatar
    Join Date
    Oct 2000
    Location
    Ohio
    Posts
    2,496
    Is this what you want?

    Code:
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Me.AxWebBrowser1.Navigate("www.vbworld.com")
        End Sub
    
        Private Sub AxWebBrowser1_ProgressChange(ByVal sender As Object, ByVal e As AxSHDocVw.DWebBrowserEvents2_ProgressChangeEvent) Handles AxWebBrowser1.ProgressChange
            Me.ProgressBar1.Value = e.progress
        End Sub
    Also, add a progress bar to your form.

  3. #3

    Thread Starter
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    thanx for your replay I will try it right now

  4. #4

    Thread Starter
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    That's great job Lethal . One step and I'll be done.
    first , when I write the site and hit enter the progress bar immediately show it's complete although the page is still downloading. So I want to substitute progress bar with Status bar.Maybe this would give me accurate progress of the download.
    thank you so so much for this push

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