in reply to Re^3: Perl/Tk and exit(0)
in thread Perl/Tk and exit(0)
Thanks for the reply, but I could use some clarification if you could. Are you saying I should replace
$svBtn = $mw->Button( -text => "SAVE", -command => sub {&checkDays; exit(0);});
with
$svBtn = $mw->Button( -text => "SAVE", -command => sub {&checkDays; $mw->after(5000, sub {exit(0)});}
When I do that I get an error saying "Scalar found where operator expected" at the next line, near "$mw" I guess I am sort of lost.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Perl/Tk and exit(0)
by tybalt89 (Monsignor) on Apr 03, 2020 at 06:37 UTC | |
by saw55 (Novice) on Apr 03, 2020 at 11:13 UTC | |
by AnomalousMonk (Archbishop) on Apr 03, 2020 at 20:33 UTC | |
by soonix (Chancellor) on Apr 04, 2020 at 09:33 UTC |