in reply to Tk::NumEntry - for decimals?

Tk::NumEntry supports -increment like so:

#!/usr/bin/perl use strict; use warnings; use Tk 800; use Tk::NumEntry; my $mw = Tk::MainWindow->new( -title => 'Tk::NumEntry demo' ); my $ne = $mw->NumEntry( -value => 20.01, -increment => .2, )->pack(); # UPDATE: and you can always change the increment # $ne->configure( -increment => .002 ); $mw->MainLoop(); 1;

cp
----
"Never be afraid to try something new. Remember, amateurs built the ark. Professionals built the Titanic."