Jan 9, 2002 #1 fortage MIS Jun 15, 2000 329 US How can I open an instance of IE through a .VBS script on W2K? Thanks
Jan 9, 2002 2 #2 jonscott8 Programmer May 12, 2000 1,317 US Code: Set oIE = CreateObject("InternetExplorer.Application") oIE.Navigate2 "[URL unfurl="true"]www.tek-tips.com"[/URL] oIE.Visible = True Set oIE = Nothing Jon Hawkins Upvote 0 Downvote
Code: Set oIE = CreateObject("InternetExplorer.Application") oIE.Navigate2 "[URL unfurl="true"]www.tek-tips.com"[/URL] oIE.Visible = True Set oIE = Nothing Jon Hawkins
Jan 9, 2002 Thread starter #3 fortage MIS Jun 15, 2000 329 US Great thanks, I was missing the .visible=true Upvote 0 Downvote