Active by windowtitle
I'm using a scrypt that open a new InternetExplorer application everytime. But i would like to acces the one already open, by is windowtitle (let say the window title is 'Vandyke - Microsoft internet Explorer'). Right now, the begening of my scrypt look like that;
#$laguage = "VBScript"
#$interface = "1.0"
Sub Main()
set Explorer = CreateObject ("InternetExplorer.Application)
Explorer.Visible = True
TIMEOUT = False
Explorer.ToolBar = 1
Hyperlink = "Http://blabla.wte"
Explorer.Navigate Hyperlink
Thank you.
|