Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 408215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:40:15+00:00 2026-05-12T17:40:15+00:00

Pretty simple one, but I can’t find the answer. I’m building an app in

  • 0

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 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:40:15+00:00Added an answer on May 12, 2026 at 5:40 pm

    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 SendMessage(Handle, EM_SETPASSWORDCHAR, Ord(FPasswordChar), 0); (thanks to Stijn Sanders for pointing me towards the StdCtrls source).

    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:

    1. Define the ES_PASSWORD constant if you don’t already have it.

      const
        ES_PASSWORD = 32;
      
    2. Create a TEdit subclass and override CreateParams to include ES_PASSWORD in the window style.

      procedure TPasswordEdit.CreateParams(var Params: TCreateParams);
      begin
        inherited;
        Params.Style := Params.Style or ES_PASSWORD;
      end;
      
    3. Enable themes for your program.

    And do not set the PasswordChar property. Done!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So this should be pretty simple, but I can't seem to find my fail
I have a feeling I'm missing something pretty simple here but, in this one
I need to decide on which one to use. My case is pretty simple.
This is probably pretty simple but I can't figure it out! I need to
Probably a pretty simple question, but I can't get my head around it. I
I think this may sound pretty simple, but still I can not get it
This one should be pretty simple. The use case is that I have a
I imagine this is pretty simple, but can't figure it out. I'm trying to
I think I've got a pretty simple scenario but can't seem to grasp how
I have a pretty simple collection, but I can't seem to bind to it's

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.