The code I have so far is along these lines
Sub Main()
Dim Explorer As Object
Set Explorer = CreateObject ("InternetExplorer.Application")
If (Explorer is Nothing) Then
Msgbox "Could not create the IE object. Stopping Program."
STOP
End If
Explorer.Navigate " Explorer.Visible = True
Do While Explorer.Busy = True
DoEvents
Loop
End Sub
I haven't Quite figured out a method of navigation yet though, as I not well versed in IE objects....
But if you can help plz put you 2 cents in I am sure we have all been pondering this one...
Sub Main()
Dim Explorer As Object
Set Explorer = CreateObject ("InternetExplorer.Application")
If (Explorer is Nothing) Then
Msgbox "Could not create the IE object. Stopping Program."
STOP
End If
Explorer.Navigate " Explorer.Visible = True
Do While Explorer.Busy = True
DoEvents
Loop
End Sub
I haven't Quite figured out a method of navigation yet though, as I not well versed in IE objects....
But if you can help plz put you 2 cents in I am sure we have all been pondering this one...