Hi I'm writing myself a database in MS Access 2007 (Vista) to catalog all my books. I want to grab from a website the title and author based upon ISBN. I've got the code to make the hyperlink. What I want to do now is download the hyperlink so I can parse it up and take the data (author, title, publish date) from the website. The parsing itself isn't tricky just programmically labor intensive. I just need help getting the information from that hyperlink into access. Thoughts or hints?
Here is what I've tried...
I was thinking I could use the sendkeys next but I'd rather find a better way.
Here is what I've tried...
Code:
myfile = "http://www.amazon.com/exec/obidos/ISBN=" & strISBN & "/" Application.FollowHyperlink myfile, , True
Comment