mridangagarwal
Programmer
Hey Everyone,
i use Perl to do some system work. I want to launch a new process. i do this by
Win32:
rocess::Create($ProcessObj,
Win32:
rocess::Create($ProcessObj,
"$perlpath",
"perl rsapiresume.pl $threadnumber prem $username $password",
0,
DETACHED_PROCESS,
".")|| die ErrorReport();
However, this launches the process in the same window. How do i launch this process in a new window. It outputs all the text into the screen of my calling script.
i use Perl to do some system work. I want to launch a new process. i do this by
Win32:
Win32:
"$perlpath",
"perl rsapiresume.pl $threadnumber prem $username $password",
0,
DETACHED_PROCESS,
".")|| die ErrorReport();
However, this launches the process in the same window. How do i launch this process in a new window. It outputs all the text into the screen of my calling script.