Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my $dialog = $mw->DialogBox (-title => "Delete", -buttons => ["Yes", " +No"]); $dialog->Label (-text => "Are You Sure you Want to Save?")->pack (-sid +e => 'left'); return 0 if $dialog->Show eq "No"; save ()and exit if $dialog->Show eq "Yes"; exit; sub save { } ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: pl/tk dialog box issue
by kvale (Monsignor) on Mar 04, 2004 at 17:58 UTC | |
|
Re: pl/tk dialog box issue
by jdporter (Paladin) on Mar 04, 2004 at 18:08 UTC |