1_Steve_1

Is there a way to hide the characters the user enters into a text box, in the same way other applications do when entering a password



Re: Visual Basic Express Edition Hide Password Characters?

Dave299

Just set the PasswordChar to what you want to display, e.g.

TextBox1.PasswordChar = "*"c

will display asterisks instead of the actual characters you enter.