http://purl.org/tcl/home/man/tcl8.4/TkCmd/entry.htm An entry box is designed to allow the user to enter one line of text for use by the application. ---- Hopefully, people will add new pages demonstrating various techniques for doing entry box validation of some common formats, like phone numbers, etc. [Entry Field Processing] [Validating Credit Card Check Digits] [Entry box validation for IP address] ---- '''Scientific calculator in two lines:''' (why, it can do ''asin'' and ''log'' ;-) pack [entry .e -textvar e -width 50] bind .e {catch {expr $e} res; append e " = $res"} ;# RS ---- One common question is about "[Echo-free password entry]". Entry has an easy answer: its -show option is useful in precisely this situation. ---- [Tk syntax help] - [Arts and crafts of Tcl-Tk programming] - [Category Command]