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!

Auto fill in a web form using web broswer control in Access

Status
Not open for further replies.

AndyBor

Programmer
Nov 19, 2004
2
US
Problem....

We have data that I need to submit to another company via there website. Currently we have to fill the web form by hand. Is it possible to have a web broswer control on a Access form with a data above and click a button to auto fill the required web feilds?

Like
Value1 = me.FirstName
Value2 = me.LastName

With WebBrowser0.Document.Forms("frmInfo")
'frmInfo is the web forms name
.FName = "Value1" 'Websites input box name
.LName = "Value2"
End With

The above dose not work? Does any one know how to access elements within the WebBrowser control.

Any Help would be great.

Andy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top