What Commands in Access VBA to Select In Options on a Web Site

  • Thread starter Thread starter Ted
  • Start date Start date
T

Ted

What command would I use to select a radio button option on a web site?
What command would I use to select a value from a drop-down box on a web site?

I have tried the following two commands and neither are working:
IEapp.Document.all("Arr").Click
and I tried:
IEapp.Document.all("Arr").Value = "D" (also tried "A")

Thanks!
 
This is an Access related question.
I am reading information from data tables, openning a web site that allows
you to plan out bus trip and populate the web page with information from the
tables.
Some of the options on the web page include radio buttons and drop down
selections. I am trying to figure out what commands to use to modify the
radio button select (i.e. click on a radio button option) and to make a
selection from the list.
Can you help me with those commands?
I'm using VBA in Access.
 
Back
Top