Link to home
Start Free TrialLog in
Avatar of BeaconSoftware
BeaconSoftware

asked on

Warning When Caps Lock when entering password

The default when entering into a password field in XP is to receive a bubble warning if the "caps lock" key is active. Somehow, this has been disabled. The field still echoes asterisks.
How can the default behaviour be restored?
Avatar of Wikkard
Wikkard
Flag of Australia image

This is default behavior in the windows login screen and other windows screens not the textbox control.
This behaviour isnt coded into the textbox control in visual studio. You would need to implement this functionality yourself.

Avatar of BeaconSoftware
BeaconSoftware

ASKER

I believe that if the "Password" property of a text box is set to true, not only is the input echoed as asterisks, but a warning bubble is shown when the CAPS LOCK key is on.
Somehow, I have managed to disable the warning bubble (tooltip) and I would like to restore it.
ASKER CERTIFIED SOLUTION
Avatar of Melange
Melange
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Another possibility (if you are using the correct manifest) may be that you have inadvertently swallowed up the EM_SHOWBALLOONTIP message for the edit control.
Thanks Melange, your manifest change is the solution. (The code was in stdafx.h but inoperative because of a define not made).
In this app, there was no chance of any messages being swallowed