cresbydotcom
Technical User
- May 22, 2006
- 234
I got this code from but I can't see how to unload the specific instance of ie created.
tried ie.Unload, .Exit, .Close
Object Browser and watch properties give no clue.
any ideas anyone?
Not sure how to invoke the menubar etc but values below seem to be unimportant.
there is a tide in the affairs of man that you Cnut ignore.................
tried ie.Unload, .Exit, .Close
Object Browser and watch properties give no clue.
any ideas anyone?
Not sure how to invoke the menubar etc but values below seem to be unimportant.
Code:
With ie
.Navigate strURL
.MenuBar = True
.StatusBar = True
.Toolbar = 0
.Visible = True
.Silent = False
.Addressbar = True
Do While ie.ReadyState <> 4: DoEvents: Loop 'wait for IE to finish
With .Document.body
'readHTML = .innerhtml
readTEXT = .innerTEXT
End With
there is a tide in the affairs of man that you Cnut ignore.................