0
votes
2answers
31 views
Windows 7 touchscreen keyboard in a WPF app
I'm building a .NET 3.5 sp1 WPF app for use on Windows 7 - is there a way to place the touchscreen keyboard in my application?
NOTE: In contrast to other similar questions I'm not …
1
vote
1answer
29 views
How to associate an action to a keyboard shortcut?
Hi all,
I've an IBAction that calls up a panel. I want to invoke that action with a keyboard shortcut but I'm at a loss on how to do it.
I guess one way of doing it would be to c …
171
votes
180answers
25k views
Keyboard for programmers
I'm trying to improve my working environment and I'm still searching for that perfect keyboard that practically types bug-free code all by itself. At the moment I'm using a Logitec …
0
votes
1answer
22 views
how do we keep the keyboard rather than dismissing it using UITextField textFieldShouldReturn?
I want to keep my keyboard up after I input something since I am gathering up multiple answers for one question.
So far I am calling:
- (BOOL)textFieldShouldReturn:(UITextField*) …
0
votes
1answer
46 views
Keyboard Assignment in Visual Studio
Every now and then my keyboard in Visual Studio gets all screwy. For example Shift + 3 inserts a pound symbol instead of a hash #. Shift + \ inserts a tilde ~ instead of a pipe | …
0
votes
1answer
25 views
Android - cutomized keyboard key and action
If you own Android phone you are no doubt have noticed how in the certain apps the keyboard layout can change from the standard issue to digits-only or to have .com or .net special …
0
votes
0answers
11 views
intercepting keystrokes in OSX
I'd like to be able to listen to keystrokes systemwide in OSX to implement an utility like AHK on windows (the shortcuts part of AHK anyway), recognizing not only simply combinatio …
0
votes
1answer
27 views
iphone MFMailComposeViewController
Hi,
Is there a way to dismiss the keyboard from MFMailComposeViewController ? If the user rotates the device, I am loading a separate controller without "send" or "cancel" being p …
6
votes
2answers
104 views
Selecting good, non-conflicting keybindings for a game
PC keyboards weren't designed for gaming, compromises were made to bring the price down, so some problems occur. Most importantly, when you hold down certain keycombos, some keys d …
0
votes
1answer
30 views
Which ReSharper command causes the Context Action List to pop up?
I've turned off ReSharper intellisense but still want a keyboard shortcut for opening the context action list (the one that pops up on the left when you point at a piece of code). …
0
votes
3answers
93 views
Why does returning false in they keydown callback does not stop the button click event?
I have a button and the following javascript routine.
$("button").keydown( function(key) {
switch(key.keyCode) {
case 32: //space
return false;
}
} );
as I understood …
0
votes
0answers
40 views
Macbook keyboard’s ] n } keys are cap locking [closed]
Hey Guys,
I have replaced my MacBook keyboard twice and I continue to have the same issue. When I press the ] n } key it just turns on Caps Lock. I really need these keys to code. …
0
votes
3answers
56 views
Capture CTRL+A, CTRL+C keys/events in flex
How to capture CTRL+A, CTRL+C events in flex? It looks like they are special keys/combinations.
As I understand in Flex 3.4 I can capture CTRL+A by capturing Event.SELECT_ALL, and …
0
votes
2answers
48 views
Where can I find a list of keyboard keycodes?
Is there a place where I can find all the keycodes for keys on a keyboard? (For example, the key up may be #114)
I can't seem to find one no matter what I search :(
Thanks!
1
vote
1answer
52 views
How to repeat key strokes with SendInput?
I'm writing a little tool in VC++ to record key strokes to replay them later, a macro recorder. It works quite nice already, using a keyboard hook function that reads each and ever …
