views:

54

answers:

2

Short question here:

In .Net 4.0 Winforms, how do I use the PasswordChar property of a Textbox to show a common black dot as a character? Is there perhaps some font I can use that has this as a character?

If I use 'UseSystemPasswordChar = true' it shows an asterisk (*).

+5  A: 

You can use this one: You can type it by pressing Alt key and typing 0149.

Giorgi
+1, this is U+2022.
steinar
A: 

you can enter your desired character in property named:PasswordChar

enter "." (dot) in PasswordChar property

Rajesh Rolen- DotNet Developer