Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Tk failure

by ichimunki (Priest)
on Jul 01, 2003 at 18:58 UTC ( [id://270605]=note: print w/replies, xml ) Need Help??


in reply to Tk failure

Main problem is that you never call MainLoop().

The following code does what you seem to want without the need for the $ep variable (and I didn't include the $TEST stuff because it's not relevant to the problem that I can see):
use Tk; my $PATH = "/opt/adacs/test/$TEST/.saved_poins"; open( RF, $PATH ) or do_err_window() && exit; print "This got executed\n"; sub do_err_window { my $fail = MainWindow->new(); $fail->geometry("250x150"); $fail->Label(-text => "File Failed To Open!")-> grid( $fail->Button(-text => "Acknowledge", - command => sub { exit} ) ); MainLoop(); }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-25 05:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found