The MASM Forum

General => The Workshop => Topic started by: clamicun on November 09, 2016, 12:05:41 AM

Title: Password dialogbox
Post by: clamicun on November 09, 2016, 12:05:41 AM
Anyone knows how to create a dialogbox, which shows the input as nonreadable characters.
the way Html and php do it with type='password' ?.
Title: Re: Password dialogbox
Post by: fearless on November 09, 2016, 12:42:36 AM
The edit control has a style that can be applied to it to create the password effect (shows * for each character typed) ES_PASSWORD (https://msdn.microsoft.com/en-us/library/windows/desktop/bb775464(v=vs.85).aspx)
Title: Re: Password dialogbox
Post by: clamicun on November 09, 2016, 03:46:56 AM
fearless,
thank you so much. Once you know it, it is easy.
Should have checked myself all dialogstyles.