Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Retrieving the value of entry fiels

by Ish (Acolyte)
on Mar 31, 2009 at 06:47 UTC ( [id://754341]=note: print w/replies, xml ) Need Help??


in reply to Retrieving the value of entry fiels

This prints the value on STDOUT - just added my $inp and () after MainLoop.
use strict; use Tk; my $inp; my $input='Enter the site address..'; my $mw = new MainWindow; my $frm_name= $mw ->Frame()->pack(); my $label =$frm_name -> Label(-text=>"Site Address") -> pack(); my $txt =$frm_name ->Entry()->pack(); my $button = $frm_name -> Button(-text => "Quit", -command => sub{ $in +p=$txt->get(); print $inp; })->pack(); my $txt_area= $mw ->Text(-width=>10,-height=>5)->pack(); MainLoop();
Hope that helps. Update I see someone else is up early... and agree that if you want "quit" to quit then you need to add that as well.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-24 18:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found