473,394 Members | 1,866 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Caps Lock Warning for Password Control

I'm not sure when it came into being, since this it the first time I
have worked very much with a password control in .NET, but if a
textbox that has a non-empty value for PasswordChar or the
UseSystemPasswordChar property is true, and the textbox has focus, if
the Caps Lock key is pressed, a warning balloon tooltip is
automatically displayed by the system. I cannot even find
documentation that describes this behaviour.

My question is, is there anyway to temporarily turn that off in code?
Jul 11 '08 #1
4 5039
za***@construction-imaging.com wrote:
I'm not sure when it came into being, since this it the first time I
have worked very much with a password control in .NET, but if a
textbox that has a non-empty value for PasswordChar or the
UseSystemPasswordChar property is true, and the textbox has focus, if
the Caps Lock key is pressed, a warning balloon tooltip is
automatically displayed by the system. I cannot even find
documentation that describes this behaviour.
There isn't any, it's a courtesy of your friendly neighborhood common
controls library. :-)
My question is, is there anyway to temporarily turn that off in code?
My question is, why on earth would you want to? It's saved my bacon a few
times. That said...

The behavior you describe comes with the system edit control. The system
(well, actually, "something", it's always hard to tell) will send an
EM_SHOWBALLOONTIP message, which you can suppress by (for example) using a
custom control that overrides WndProc:

public class CustomMaskedTextBox : MaskedTextBox {
private const int EM_SHOWBALLOONTIP = 0x1503;
public bool DisableBalloonTips { get; set; }

protected override void WndProc(ref Message m) {
if (m.Msg == EM_SHOWBALLOONTIP && DisableBalloonTips) {
m.Result = (IntPtr) 0;
return;
}
base.WndProc(ref m);
}
}

A more general method would be to use some way of subclassing the control,
since this can apply to any edit box.

Since you cross-posted this in the C# and VB groups, I trust you can
translate it to VB yourself if necessary. For future reference, a better
group would have been microsoft.public.dotnet.framework.windowsforms, since
this is not a language-specific question.

--
J.
Jul 11 '08 #2
On Jul 11, 2:54*pm, Jeroen Mostert <jmost...@xs4all.nlwrote:
za...@construction-imaging.com wrote:
I'm not sure when it came into being, since this it the first time I
have worked very much with a password control in .NET, but if a
textbox that has a non-empty value for PasswordChar or the
UseSystemPasswordChar property is true, and the textbox has focus, if
the Caps Lock key is pressed, a warning balloon tooltip is
automatically displayed by the system. I cannot even find
documentation that describes this behaviour.

There isn't any, it's a courtesy of your friendly neighborhood common
controls library. :-)
My question is, is there anyway to temporarily turn that off in code?

My question is, why on earth would you want to? It's saved my bacon a few
times. That said...
My company uses a third part software packe that our software
integrates with. The third part software has two methods of security,
one uses Active Directory, where the password is defiitely case
sensitive. But the password for the builtin security is not case
sensitive. That is why I would like to be able to turn it off, if the
database is configured to use the third party software security, there
is no need to warn the user that the Caps Lock key is on.
>
The behavior you describe comes with the system edit control. The system
(well, actually, "something", it's always hard to tell) will send an
EM_SHOWBALLOONTIP message, which you can suppress by (for example) using a
custom control that overrides WndProc:

* *public class CustomMaskedTextBox : MaskedTextBox {
* * *private const int EM_SHOWBALLOONTIP = 0x1503;
* * *public bool DisableBalloonTips { get; set; }

* * *protected override void WndProc(ref Message m) {
* * * *if (m.Msg == EM_SHOWBALLOONTIP && DisableBalloonTips) {
* * * * *m.Result = (IntPtr) 0;
* * * * *return;
* * * *}
* * * *base.WndProc(ref m);
* * *}
* *}

A more general method would be to use some way of subclassing the control,
since this can apply to any edit box.

Since you cross-posted this in the C# and VB groups, I trust you can
translate it to VB yourself if necessary. For future reference, a better
group would have been microsoft.public.dotnet.framework.windowsforms, since
this is not a language-specific question.
Thanks, I will try your segguestion. I crossposted to both groups
cause it was, as you say, not language specific. I was unaware of the
other newsgroup, in the future I will first try there.
Jul 11 '08 #3
za***@construction-imaging.com wrote:
On Jul 11, 2:54 pm, Jeroen Mostert <jmost...@xs4all.nlwrote:
>za...@construction-imaging.com wrote:
>>I'm not sure when it came into being, since this it the first time I
have worked very much with a password control in .NET, but if a
textbox that has a non-empty value for PasswordChar or the
UseSystemPasswordChar property is true, and the textbox has focus, if
the Caps Lock key is pressed, a warning balloon tooltip is
automatically displayed by the system. I cannot even find
documentation that describes this behaviour.
There isn't any, it's a courtesy of your friendly neighborhood common
controls library. :-)
>>My question is, is there anyway to temporarily turn that off in code?
My question is, why on earth would you want to? It's saved my bacon a few
times. That said...

My company uses a third part software packe that our software
integrates with. The third part software has two methods of security,
one uses Active Directory, where the password is defiitely case
sensitive. But the password for the builtin security is not case
sensitive. That is why I would like to be able to turn it off, if the
database is configured to use the third party software security, there
is no need to warn the user that the Caps Lock key is on.
It can't hurt to warn, though, and it's very good for users to get
accustomed to the rule "passwords are case sensitive", since in most systems
they are (and in those were they aren't, they ought to be, but let's ignore
the issue of password strength for now). Unless users (or pointy-haired
bosses) actually complain that they're confused by the message, I wouldn't
go to the trouble of disabling it. Especially since the way to disable it is
a bit dubious (turning off balloon tips works, but it has the obvious
drawback of, well, turning off balloon tips, which can be used for more
purposes than caps lock warnings).

--
J.
Jul 11 '08 #4
On Jul 11, 3:49*pm, Jeroen Mostert <jmost...@xs4all.nlwrote:
za...@construction-imaging.com wrote:
On Jul 11, 2:54 pm, Jeroen Mostert <jmost...@xs4all.nlwrote:
za...@construction-imaging.com wrote:
I'm not sure when it came into being, since this it the first time I
have worked very much with a password control in .NET, but if a
textbox that has a non-empty value for PasswordChar or the
UseSystemPasswordChar property is true, and the textbox has focus, if
the Caps Lock key is pressed, a warning balloon tooltip is
automatically displayed by the system. I cannot even find
documentation that describes this behaviour.
There isn't any, it's a courtesy of your friendly neighborhood common
controls library. :-)
>My question is, is there anyway to temporarily turn that off in code?
My question is, why on earth would you want to? It's saved my bacon a few
times. That said...
My company uses a third part software packe that our software
integrates with. The third part software has two methods of security,
one uses Active Directory, where the password is defiitely case
sensitive. But the password for the builtin security is not case
sensitive. That is why I would like to be able to turn it off, if the
database is configured to use the third party software security, there
is no need to warn the user that the Caps Lock key is on.

It can't hurt to warn, though, and it's very good for users to get
accustomed to the rule "passwords are case sensitive", since in most systems
they are (and in those were they aren't, they ought to be, but let's ignore
the issue of password strength for now). Unless users (or pointy-haired
bosses) actually complain that they're confused by the message, I wouldn't
go to the trouble of disabling it. Especially since the way to disable itis
a bit dubious (turning off balloon tips works, but it has the obvious
drawback of, well, turning off balloon tips, which can be used for more
purposes than caps lock warnings).
Thanks for your comment. In fact, after I mentioned this to my "pointy
head boss", that was exactly what he said to me.

No, he not really "pointed headed". :-)
Jul 11 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
by: Robert | last post by:
Hi! I was wondering if the was any way to determine the state of the caps lock key, on or off. Of course I can capture the key events and see whether the caps lock is pressed, but that does not...
4
by: Peter D | last post by:
I have a second hand bar code reader (keyboard wedge) en i can read the bar codes but after every scan he turns my caps lock on. (GRRRRRR). I search a code to turn my caps lock off or can anyone...
3
by: Mike L | last post by:
How do I turn Caps Lock on, when my form opens?
0
by: fNew VBer | last post by:
Hi. I'm new to Visual Basic .NET, so you'll have to bear with me . . . I want to create an app that turns off CAPS LOCK when the SHIFT key is pressed. I got the code to turn off CAPS LOCK to...
1
by: yxq | last post by:
Hello, I have a main form, there other some controls(i.e. textbox) in the form. I want to detect whether Caps Lock key is pressed in form-key event. Private Sub Form1_KeyUp(ByVal sender As...
1
by: charlies224 | last post by:
Hi, I am writting a software that requires me to make sure the Num Lock is always on and Caps Lock is always off. First, I know how to detect if Num Lock or Caps Lock is on or off (if...
1
by: Brian Parker | last post by:
I play a DirectX game and while that game is running, I would like to change the behavior of the Caps Lock key. When it's pressed, I don't want it to toggle my Caps Lock on and off, but instead...
5
by: Muhammad Ahsin Saleem | last post by:
Hi I want to Turn Caps Lock off when I start my Application If Caps Lock option is on. Can anybody help me. Kindly do tell me about it.
4
by: zacks | last post by:
I'm not sure when it came into being, since this it the first time I have worked very much with a password control in .NET, but if a textbox that has a non-empty value for PasswordChar or the...
1
by: cmrhema | last post by:
Hi, Two questions 1. In windows application if we put on the below code, it will identify whether caps lock is on or not if (TextBox.IsKeyLocked(Keys.CapsLock)) { ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.