|
-
Jul 16th, 2000, 09:05 PM
#1
Thread Starter
New Member
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?
-
Jul 16th, 2000, 09:12 PM
#2
Addicted Member
Try the vbscript forum
Check the vbscript forum..
-
Jul 16th, 2000, 09:41 PM
#3
Addicted Member
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.
-
Jul 16th, 2000, 09:44 PM
#4
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|