http://www.perlmonks.org?node_id=1003305


in reply to Numeric entry Tk widget with up/down buttons, does it exist?

There is a module, called Tk::NumEntryPlain.
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
    Thanks that looks exactly like what I need!