in reply to Numeric entry Tk widget with up/down buttons, does it exist?
use Tk; use strict; use Tk::NumEntry; use Tk::NumEntryPlain; my $mw = MainWindow->new; $mw->NumEntry( -minvalue => 10, -maxvalue => 30, -value => 15 )->pack; MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Numeric entry Tk widget with up/down buttons, does it exist?
by perltux (Monk) on Nov 11, 2012 at 08:48 UTC |