in reply to pl/tk dialog box issue
my $dialog = $mw->DialogBox (-title => "Delete", -buttons => ["Yes", " +No"]); $dialog->Label (-text => "Are You Sure you Want to Save?")->pack (-sid +e => 'left'); my $answer = $dialog->Show; return 0 if $answer eq "No"; save ()and exit if $answer eq "Yes"; exit; sub save { } ;
-Mark
|
|---|