in reply to Re^3: Perl TK
in thread Perl TK
Anyone know why it is crashing out my perl? I believe I have it forked properly??$tmp_label = $table->Button(-image => $D_Image, -borderwidth=>0, -cur +sor=>'hand1', -command=>[\&NewOrders]); sub NewOrders { $pid = fork(); if ($pid == 0) { execute(system "start http://www.yahoo.com"); exit(0) +;} }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Perl TK
by zentara (Cardinal) on Sep 24, 2012 at 17:47 UTC | |
by randor (Novice) on Sep 25, 2012 at 12:39 UTC |