E Emaga75 Aug 3, 2004 #1 In dotNET windows_based deployment project user interface form, How to mask a textbox for input password? Thanks.
In dotNET windows_based deployment project user interface form, How to mask a textbox for input password? Thanks.
M Morten Wennevik Aug 3, 2004 #2 Hi Emaga75, You set the TextBox's PasswordChar property to a specific Char that will be used instead of the real character. textBox1.PasswordChar = '*';
Hi Emaga75, You set the TextBox's PasswordChar property to a specific Char that will be used instead of the real character. textBox1.PasswordChar = '*';