father of monstermagnet
November 5th, 2005, 03:04 AM
I want to have access to an InternetExplorer.Application object
that was opend by another program.
The GetObject methode doesn't work with IE.
Is there another way to catch the object with Girder ?
GetObject with Outlook
Opened with VBS
Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olContactItem)
myItem.Display
Closed with LUA
Outlook = luacom.GetObject("Outlook.Application")
if not Outlook then
print ("Not found")
else
Outlook:Quit()
end
that was opend by another program.
The GetObject methode doesn't work with IE.
Is there another way to catch the object with Girder ?
GetObject with Outlook
Opened with VBS
Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olContactItem)
myItem.Display
Closed with LUA
Outlook = luacom.GetObject("Outlook.Application")
if not Outlook then
print ("Not found")
else
Outlook:Quit()
end