RATE THIS ANSWER
0
Click to Vote:
0
0
If you just want to make the textbox show asterisks (*) in the textbox so that the text is hidden when the user types, set the PasswordChar property to *.
That works in all versions of .net framework, and can be done in code or in the winforms designer
the code behind this approach is:
this.textBox1.Name = "textBox1";
this.textBox1.PasswordChar = '*';
Latest Contributors: MarkWPF
15 pts.