Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I work with multiple web sites in code?

Status
Not open for further replies.

avatarp

Technical User
Jul 3, 2002
22
CA
I am trying to capture information from various web sites in code. However I am facing a challenge. How does VB know when a web site has been fully loaded? Is there a property that I can use to determine this. Or do I have to set up pauses in my code. It would be ideal if there was some kind of property that I could use.

If you have any ideas let me know thanks.
 

Check out the webbrowser control and these events

[tt]Option Explicit

Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)

End Sub

Private Sub WebBrowser1_DownloadComplete()

End Sub

Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)

End Sub

Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)

End Sub
[/tt]

Good Luck
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top