in reply to TK form submission
use Tk; my $top = new MainWindow; my $but = $top->Button(text=>"OK", command=>\&get_text)->pack; my $tex = $top->Text()->pack; MainLoop; sub get_text { $text = $tex->get(0.1,'end'); print $text; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: TK form submission
by Anonymous Monk on Jun 06, 2004 at 20:02 UTC | |
by eserte (Deacon) on Jun 07, 2004 at 10:41 UTC | |
by davidj (Priest) on Jun 07, 2004 at 13:00 UTC |