Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open an instance of IE 2

Status
Not open for further replies.

fortage

MIS
Jun 15, 2000
329
US
How can I open an instance of IE through a .VBS script on W2K?

Thanks
 
Code:
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate2 "[URL unfurl="true"]www.tek-tips.com"[/URL]
oIE.Visible = True
Set oIE = Nothing
Jon Hawkins
 
Great thanks, I was missing the .visible=true
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top