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
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