
Originally Posted by
TexasTony
Niya,
Sure, let me elaborate. Note that I'm pulling the data from my Paypal site.
OK, here is some of my code:
Set ie = New InternetExplorer
ie.Visible = True
ie.Navigate "http://www.paypal.com?login_email=LOGINemail.com"
Dim ieDoc As HTMLDocument
Set ieDoc = ie.Document
I stop the code & look at the ieDoc structure. I stopped the program after the Set ieDoc instruction and go to the watch window. Within that structure, some of the data I want was here:
ieDoc.links.Item 1.InnerHTML
The items I want to search are "Item 1", "Item 2", "Item 3"... there is definitely a space between the 'm' and the digit.
Does that help?
Thanks
Tony