How to send variables to textboxes in a web site

  • Thread starter Thread starter Guest
  • Start date Start date
You should be able to use the InternetExplorer object from the
"Internet Controls" reference library. For example, something like:

Set oIE = New InternetExplorer
oIE.Visible = True
oIE.Navigate "http://home.ubalt.edu/ntsbarsh/Business-stat/graph/
Graph.htm"
Do: DoEvents: Loop Until oIE.ReadyState = READYSTATE_COMPLETE

Set oForm = oIE.Document.forms(0)
oForm("jan1").Value = Range("A1").Value
oForm("feb1").Value = Range("B1").Value
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top