![]() |
|
There's more than one way to do things | |
PerlMonks |
Re: The behavior of Win32::OLE->newby jsprat (Curate) |
on Nov 19, 2003 at 18:10 UTC ( #308368=note: print w/replies, xml ) | Need Help?? |
You want a new instance of IE every time it runs, right? Instead of Win32::OLE->new(), what you want to use is CreateObject, like so:
$ie in each script will reference its own instance of IE. Update: According to Win32::OLE docs, new and CreateObject are equivalent. You should be getting a new instance of ie with each run.
In Section
Seekers of Perl Wisdom
|
|