tags:

views:

65

answers:

1

I am developing an student attendance application in wxpython and I need to know how to convert a display text into encrypted password format. Forexample :if I give the name as moni means then it should be displayed as in format of ****

+1  A: 

You need to give your text control the TE_PASSWORD style.

(As Jørn's comment points out, this isn't "encryption" - I'm assuming you're only talking about the visual presentation of the password.)

RichieHindle