Tagged Questions

6
votes
1answer
977 views

Override Caps Lock with Ctrl using C#

I'm writing (yet another, I know) keyboard remapper using C# and Visual Studio 2008. I followed this guide to learn how to snap up low-level key presses. This works just fine for overriding e.g. ...
3
votes
4answers
1k views

How can I find the state of NumLock, CapsLock and ScrollLock in .net?

How can I find the state of NumLock, CapsLock and ScrollLock keys in .net ?
1
vote
2answers
1k views

Way to turn on keyboard's caps-lock light without actually turning on caps-lock?

I'm writing a program that uses caps-lock as a toggle switch. It would be nice to set the LED of the key to show that my program is on or off, like the capslock key does naturally. I know that I ...
0
votes
1answer
144 views

Programatically disable caps lock

I'm using SendKeys in an automation program for work. I've been plodding along, and am now trying to iron out all the bugs that I've created :-) One of which, is that when I used ...
0
votes
3answers
158 views

Bind to Caps Lock

Hi I'm building a login screen in wpf and I'm trying to figure out how to Bind a part of my code to only be visible when the Caps lock key is on. <StackPanel Grid.Row="3" Grid.ColumnSpan="2" ...
0
votes
2answers
537 views

Get and set Num/Caps/Scroll-lock status in Mono C#

Is thyere a way in Mono.Net to get and set the Num/Caps/Scroll-lock status platform independent (Linux and Windows)? Thanks in advance.