in reply to The behavior of Win32::OLE->new
On my Windows box, each copy of explorer is independent and separately prompts for the proxy password.use Win32::OLE; my $url = 'http://www.perlmonks.com/index.pl?node_id='; # opens five separate instances for (my $i = 0; $i < 5; $i++ ) { my $node_id = 300000 + $i; $obSh = Win32::OLE->new('WScript.Shell'); $rc = $obSh->run("IEXPLORE.EXE ${url}${node_id}", 1, false); undef $obSh; }
You might want to read this too.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: The behavior of Win32::OLE->new
by marynella (Novice) on Nov 20, 2003 at 15:37 UTC |