shan_emails has asked for the wisdom of the Perl Monks concerning the following question:

Dear PerlMonks,

The following code is working fine in debug mode in "Perl IDE" but when we create exe in perlapp then

While running the application exeExecute, then it runs (fexe and sexe) and it is not visible but it's working and it's visible is in "Windows Task Manager -> Process Tab". What's wrong with this code i need to visible the exe's for easy understanding of user.
#fexe.pl #-------- use Win32; use Win32::OLE; use OLE; Win32::MsgBox ("\n Working first exe\n"); while(1){}



#sexe.pl #-------- use Win32; use Win32::OLE; use OLE; Win32::MsgBox ("\n Working second exe\n"); while(1){}



#exeExecute.pl #-------------- @exe=('D:\\fexe.exe','D:\\sexe.exe'); foreach my $exe (@exe){ chdir "D:\\"; system(1, "$exe"); # here 1 for don't wait for next line to execut +e } print "over";


Thanks in advance

Shanmugam A.

Replies are listed 'Best First'.
Re: How can visible the exe's when its running
by Anonymous Monk on Dec 11, 2008 at 11:57 UTC
    perlapp has options for what kind to create