http://www.perlmonks.org?node_id=907150

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

Here is the code:

#!/usr/bin/perl
use Tk;
#MainWindow
our $mw = MainWindow->new;
$mw->configure(-bg=>"#9AC0CD");
$mw->geometry("800x600+240+80");
$mw->resizable( 0, 0 );
$mw->title("hello");
$mw->Label(-text =>'hellov1.0',-font=>[-size=>24],-bg=>"#9AC0CD")->pac +k();
MainLoop;

question is that after i compiling the script with pp by following command:

pp -gui -i hello.ico -o hello.exe hello.pl

When i run the generated EXE file, i find there are two hello.exe in windows task manager, what's the problem?

Replies are listed 'Best First'.
Re: Why there are two process for my application after compiling it by pp?
by Anonymous Monk on May 28, 2011 at 20:26 UTC