Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: RFC: Learning Perl/Tk

by thundergnat (Deacon)
on Aug 10, 2011 at 14:39 UTC ( [id://919670]=note: print w/replies, xml ) Need Help??


in reply to RFC: Learning Perl/Tk

my $button = $mw -> Button(-text => "Quit", -command => sub { exit }) -> pack();

Arrgh. Don't use a bare exit; in a Tk program, use Tk::exit; It won't matter in this little snippet, but for a larger more complex GUI with multiple windows/widgets Tk::exit; will do a controlled cleanup and shutdown and avoid all kinds of warnings about unreleased resources.

It might be worth mentioning the Widgets demo program included with Tk to help explain some of the widgets.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://919670]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (2)
As of 2024-04-24 16:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found