5
votes
1answer
209 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
5answers
446 views
KeyDown : recognizing multiple keys
How can I determine in KeyDown that Ctrl + Up was pressed.
private void listView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Control && e.KeyCode == Keys.Up)
{
…
2
votes
2answers
1k views
How to capture CTRL+TAB, CTRL+SHIFT+TAB in WPF?
Does anyone have some sample code that will trap the CTRL+TAB and CTRL+SHIFT+TAB for a WPF application. We have created KeyDown events and also tried adding command bindings with input gestures but …
1
vote
2answers
152 views
Detecting CTRL+V using AS3 in IE
I am not able to detect the keyboard event CTRL+V on a swf using AS3 in IE. It seems to trigger the default browser behavior, and im not able to do anything... Any workaround for this?
1
vote
6answers
194 views
Which is more ergonomic: ctrl or command(alt)? [closed]
Help me settle a debate. This is on a normal keyboard layout -- no kenesis trickery here.
My friend contends that pressing command (for a key command) is MORE ergonomic than pressing ctrl, since your …
1
vote
2answers
193 views
How can I set and restore FPU CTRL registers?
I can reset FPU's CTRL registers with this:
http://support.microsoft.com/kb/326219
But how can I save current registers, and restore them later?
It's from .net code..
What I'm doing, is from …
0
votes
2answers
495 views
Clicking HyperLinks in a RichTextBox without holding down CTRL - WPF
I have a WPF RichTextBox with isReadOnly set to True. I would like users to be able to click on HyperLinks contained within the RTB, without them having to hold down CTRL.
The Click event on the …
