in reply to Re: failed AUTOLOAD widgets when trying to destory widget
in thread failed AUTOLOAD widgets when trying to destory widget
my $frame = $tl->Frame()->pack; my $lab = $tl->Label()->pack; my $ent = $tl->Entry()->pack; my $label = $frame -> Label(-text=>"NQR Reports "); $lab -> grid(-row=>0,-column=>0); $ent -> grid(-row=>0,-column=>1); $label -> grid(-row=>0,-column=>0); $frame -> grid(-row=>2,-column=>1,-columnspan=>2); my $but1 = $tl->Button( -text => 'Open File1', -command => $push_butt +on2 )->pack; $but1 -> grid(-row=>2,-column=>2,-columnspan=>2);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: failed AUTOLOAD widgets when trying to destory widget
by zentara (Cardinal) on Oct 26, 2012 at 14:37 UTC | |
by reaper9187 (Scribe) on Oct 26, 2012 at 15:20 UTC |