Current/Active Internet Explorer

  • Thread starter Thread starter tighe
  • Start date Start date
T

tighe

All,

i have searched for this and found nothing but maybe someone can help me.

I know how to createobject for IE and then pass code to it, but what about
IE all ready open, how do i reference that?

thanks for all the help past and future.
 
hi,

I know how to createobject for IE and then pass code to it, but what about
IE all ready open, how do i reference that?
Use

Dim ie As Object ' SHDocVw.InternetExplorer
Set ie = GetObject(, "InternetExplorer.Application")

instead of CreateObject().


mfG
--> stefan <--
 
thanks,

i has looked at the getobject but didnt realize i need the ","
unfortunately now i get: Run-time error '429': ActiveX component can't create
object.

since all indications are this is a registry error, i will have to research
how to fix that.
 
Back
Top