in reply to limit number of characters in entry widget

my $length = 6; $widget->Entry( -validate => 'key', -vcmd => sub{ return 1 if (length($_[0]) <= $length); return 0; } );

Replies are listed 'Best First'.
Re^2: limit number of characters in entry widget
by Anonymous Monk on Jun 17, 2005 at 13:16 UTC
    thanks