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
Visual Basic Express Edition
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
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.