Pretty simple one, but I can't find the answer.
I'm building an app in Delphi 5 Enterprise, and want my app to use the new bold black dot in a password field instead of an asterisk.
How can I do this?
|
1
|
|
|
|
|
|
See PasswordBox: A Better Way to Enter Passwords:
|
||||||||||||
|
|
|
Thanks to all the above attempts, and all that contributed, but I had to join all the relevant parts together to get to a whole solution. Thanks to Sinan Ünür for pointing out the ES_PASSWORD flag, which is used by default in Delphi, but only if PasswordChar is <> #0 (NUL). This means that when you set PasswordChar to something, it sets the ES_PASSWORD flag, and then calls If I create a subclass and bypass the line sending the EM_SETPASSWORDCHAR field, I still get only stars. What I was forgetting to do was enable themes (which in my ancient version of Delphi requires a resource file compiling in). Hey presto, it works; Blobs abound! So, in summary:
And do not set the PasswordChar property. Done! |
||||
|
|
|
I'm sure it uses the standard UI font. The CharMap code is U+25CF I dunno if this will work, but you might be able to copy this. ● |
||
|
|
|
According to KB 956609, the dot character is Unicode 0x25cf. It isn't tied to a particular font, but the linked page specifically mentioned that IE uses the Tahoma font. |
|||
|
|
|
|
The bold black dot in password fields is Unicode character U+25CF ("BLACK CIRCLE"). Most common fonts feature this character. |
||
|
|
|
|
Up to Delphi 2007, using |
||
|
|