dennisrose
New Member
My problem is similar to your prior post 176859.
I have the need to input name and address info from my vb5 program into another system's name and address fields on their web page.
The code I am using below I got from your post 176859 but it does not work. I am using "whitepage's" website to test this code. I used Whitepage's HTML to find the field names.
What am I doing wrong? Please help!!! Thanks
Dim PostURL As String
PostURL = www.whitepages.com
With CreateObject("InternetExplorer.Application")
.navigate PostURL & _
"?basic_location=23229;basic_name=frost;basic_firstname=jack"
.Visible = True
Do While .busy
DoEvents
Loop
End With
I have the need to input name and address info from my vb5 program into another system's name and address fields on their web page.
The code I am using below I got from your post 176859 but it does not work. I am using "whitepage's" website to test this code. I used Whitepage's HTML to find the field names.
What am I doing wrong? Please help!!! Thanks
Dim PostURL As String
PostURL = www.whitepages.com
With CreateObject("InternetExplorer.Application")
.navigate PostURL & _
"?basic_location=23229;basic_name=frost;basic_firstname=jack"
.Visible = True
Do While .busy
DoEvents
Loop
End With