[Tkinter-discuss] use entry field to enter password (Re: Tkinter-discuss Digest, Vol 47, Issue 5)

Fredrik Lundh fredrik at pythonware.com
Sun Jan 6 14:54:05 CET 2008


(please don't open new threads by replying to some random unrelated 
message.  also, please use a proper subject.  thanks!)

Rajeev Nair wrote:

> can anyone tell me how to use the entry field to enter system password?
> So instead of system asking me in terminal i want to enter the
> password through the entry field.

not sure what you mean by "system" here, but to use the Entry widget to 
enter a password, you can set the "show" option:

     widget = Entry(parent, show="*", width=15)

</F>



More information about the Tkinter-discuss mailing list