I'm working on an Access database application used for researching
commute information for company employees and recommends travel
routes
and distances for busing to work instead of driving.
Using VBA in Access I have automated opening up Google Maps and
populating the starting and ending addresses and clicking on the get
direction boxes.
I must then manually click on the "Public Transit" option because I
have been unable to determine they name of the "Public Transit" menu
option by viewing the Source for the Google Maps web site.
I have been searching for the <input type phrase and I am unable to
locate anything that looks like it could be this selection option.
Could anyone please give me the input type, id, and name of that
check
box so that I can finish automating my application please?
I was able to get some help from Barry Hunter on my earlier problem,
but now I could use some help with this one.
Barry helped me with the name of the Avoid Highways option which I was
able to add into my Access database using this VBA code and it works
great!
IEapp.Document.All("ddopt_avhwy").Click
While IEapp.Busy
DoEvents
Wend
Your help would be greatly appreciated!
Thank you in advance.