Hi,
is there a way to copy the contents of a ie window opened by the code below? This is additional code to a webquery - to be used when navigation thro' the website is required
Sub Test()
Const url As String = ' ****** the address is obtained from another macro
Dim ie As Object
Dim document As Object
Set ie = CreateObject("internetexplorer.application")
With ie
.Visible = True
.navigate url
Do While .ReadyState <> 4: Loop
is there a way to copy the contents of a ie window opened by the code below? This is additional code to a webquery - to be used when navigation thro' the website is required
Sub Test()
Const url As String = ' ****** the address is obtained from another macro
Dim ie As Object
Dim document As Object
Set ie = CreateObject("internetexplorer.application")
With ie
.Visible = True
.navigate url
Do While .ReadyState <> 4: Loop