in reply to win32 browser launching weirdness
This will open Internet Explorer using OLE and open the file "c:\websites\site1\page.htm"use Win32::OLE; Win32::OLE::CreateObject("InternetExplorer.Application.1", $ie) || die + "CreateObject: $!"; $ie->{Visible} = 1; $ie->Navigate("file://c|/websites/site1/page.htm");
|
---|