I am looking to copy data from a specific website and paste the information into excel. I have created a search box were you can enter the item code eg "CPINT00038" and it will open the specific page. but for the life of me i cant figure out how to scrape the image and the text and paste them into excel.
here is my code so far please help
Sub SearchCC()
'what to search for
Dim SearchString As String
SearchString = InputBox("What do you want to search for?")
'create and a new instance of IE
Dim IE As New InternetExplorer
IE.Visible = True
'to find what you're looking for
IE.Navigate "http://www.canadacomputers.com/search_results.php?
search_in=&keywords=" & SearchString
While IE.Busy Or IE.ReadyState <> 4: DoEvents: Wend
End Sub