Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I have to resort to killing the application in order to stop the process. Any ideas what I can do to resolve this issue? Thank you O great Saints!$tl = $mw->Toplevel(-title=>"Stupid Program"); while (<DATA>){ process data output to a text widget } my $cancel_btn=$action_frame->Button(-text=>"Cancel", -command=> sub { $tl->withdraw })->pack(-side =>'left', -expand=>1, -anchor => 'cente +r');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: $widget->withdraw
by zentara (Cardinal) on Jun 02, 2006 at 16:41 UTC | |
by Anonymous Monk on Jun 02, 2006 at 17:04 UTC | |
by zentara (Cardinal) on Jun 02, 2006 at 18:00 UTC |