in reply to Re^3: Perl Tk exit the main window after 5 seconds...
in thread Perl Tk exit the main window after 5 seconds...
my $status = $mw -> messageBox( -message=>"Do u want to start the process..?", -type=>'yesno',); if($status eq "Yes") { $choice = "Yes"; print "$choice\n"; exit; }else{ $choice = "No"; } } ) -> pack(-side =>'right',-expand => 0); $status->transient($mw); # will work, but causes harmless errors repo +rted
|
|---|