Thank you, it works.___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
On Thu, 22 Nov 2007, Kenneth Ölwing wrote:
>
> > system "\"C:\\Programme\\Internet Explorer\\iexplore.exe\" $website";
> > wait, until the browser window is closed.
> Some:
>
> Look into Win32::Process (I believe it's called). The CreateProcess call
> has flags to control this.
>
> Crude, but
> system "\"C:\\Programme\\Internet Explorer\\iexplore.exe\" $website";
> wait, until the browser window is closed.
Some:
Look into Win32::Process (I believe it's called). The CreateProcess call
has flags to control this.
Crude, but since you're using 'system', run cmd.exe and there use the
Hello,
I want to start a browser window, but as background process, so my script
will continue to run:
My example:
system "\"C:\\Programme\\Internet Explorer\\iexplore.exe\" $website";
wait, until the browser window is closed.
Any suggestions?
Walter Laub