Hi,


I can open an instance of internet explorer :
Code:
set objIE = createobject("InternetExplorer.Application")
But how do I get a reference to an already open IE ?
I tried GetObject but it complains :


Set objIE = GetObject(,"InternetExplorer.Application")
ActiveX Component can't create object
or

Set objIE = GetObject("InternetExplorer.Application")
Automation Error, invalid syntax


I'm sure I've done this in the past and its connected to an open IE (not forced user to re-open and browse...)


Any one have any ideas or pointers to websites to read up on this?



(I have a form on a web page and I want to get to the HTML to Parse and store into my mdb)