Results 1 to 4 of 4

Thread: EVERYINE READ (this one is easier)

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2000
    Posts
    15

    Wink

    Is there a way i can have text, and when the website is loading the text says 'Loading Site..' , and after the site is finishes loading it would say 'Finished' . That sounds simple, so can someone plz help me?

  2. #2
    Addicted Member
    Join Date
    May 2000
    Posts
    240

    Wink Try the vbscript forum

    Check the vbscript forum..

  3. #3
    Addicted Member
    Join Date
    Jan 1999
    Posts
    204
    are you talking about like a webcontrol then here

    Code:
    Private Sub timTimer_Timer()
        If brwWebBrowser.Busy = False Then
            timTimer.Enabled = False
            Me.Caption = brwWebBrowser.LocationName
        Else
            Me.Caption = "Working..."
        End If
    End Sub
    
    Private Sub cboAddress_Click()
        If mbDontNavigateNow Then Exit Sub
        timTimer.Enabled = True
        brwWebBrowser.Navigate cboAddress.Text
    End Sub
    hope this is what you want
    WHat would we do with out Microsoft.
    A lot more.

  4. #4
    Guest
    Code:
    Private Sub WebBrowser1_DownloadBegin()
    Label2.Caption = "Loading Site.."
    End Sub
    
    Private Sub WebBrowser1_DownloadComplete()
    Label2.Caption = "Finished"
    End Sub
    
    Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
    Label2.Caption = "Finished"
    End Sub

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