in reply to Perl/Tk,How to limit the number of characters in Entry?
See -validate => 'key', -ValidateCommand => sub { length( $_[0] ) <= 10 ? 1 : 0 } and the validation section of the Entry widget POD.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl/Tk,How to limit the number of characters in Entry?
by Anonymous Monk on Jan 19, 2013 at 08:37 UTC |