1
I am trying to use VBA to collect data directly from the internet. I saw several examples of the use of the Internetexplorer Object, as below:
Dim IE as Object
Set IE = New InternetExplorer
IE.navigate "http://www.minhapagina.com.br"
html = IE.Document
So you could manipulate the html object and get the data I need, however the document object is always empty. How to proceed?
Related: http://answall.com/questions/45142/macro-para-acessar-site-com-login
– Luiz Vieira