Saturday, May 8, 2010

Quit Method

Quit Method Example

Set objIExplorer = CreateObject("internetexplorer.application")
objIExplorer.visible = True
objIExplorer.navigate "yahoo.com"

Do While objIExplorer.Busy
WScript.Sleep 1000
Loop

objIExplorer.quit



See all Methods & Properties of InternetExplorer Object here.