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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Submit a WebPage and validate submission

Status
Not open for further replies.

Swi

Programmer
Feb 4, 2002
1,968
US
Could someone provide some direction on how to submit a webpage through VB6 and wait until the page submission is complete?

Basically, I am passing a URL like so:


Any help would be greatly appreciated.

Thanks.

Swi
 
Bit late I know (and I expect you got this workign already), but - assuming that you either have a webbrowser control on a form, or have added a reference to the internet controls you simply Navigate2 to the URL:

WebBrowser1.Navigate2 "
And the following event:

Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, url As Variant)
If WebBrowser1.ReadyState = 4 Then MsgBox "All submitted ..."
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top