0
votes
2answers
31 views
Selecting radio button option based on keyboard input
I have a page full of radio buttons that I'd like to be able to tab through and then select options based on keyboard input. I'm hoping to get the keyboard input to work on radiobuttons in a similar …
0
votes
2answers
37 views
How to prevent a Beep sound if global keyboard shortcut is pressed in the other application?
Mac OS X 10.6 — Cocoa
I'm using global event monitor for displaying status item menu using custom keyboard shortcut:
globalEventMonitor = [NSEvent addGlobalMonitorForEventsMatchingMask:NSKeyDownMask …
1
vote
2answers
34 views
How can I show a UIDatePicker instead of a keyboard when a user selects a UITextField?
I have a nice clean UI within a table view which has a few text fields for the user to fill out. One of the fields is for the user's birthday.
I'd like to have it so that when the user selects the …
173
votes
180answers
27k 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 Logitech Wave for my …
0
votes
1answer
23 views
Ctrl key press condition in WPF MouseLeftButtonDown event-handler
How I can add additional condition of certain keyboard key, say, Ctrl-key state to WPF MouseLeftButtonDown event-handler?
private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
…
0
votes
1answer
32 views
UITableView won’t scroll after editing view frame and origin
I'm trying to implement a UITextView in a table cell at the bottom of a table view.
I've tried the suggestions here …
1
vote
0answers
27 views
Set custom keyboard for android application
Hi,
i know that there is the possibility to set a special keyboard with these attributes. But i need my own keyboard as default. How can i do that? How can my app change the settings?
As an example, …
8
votes
6answers
145 views
One handed coding — tablet, special keyboard, one-handed typing?
I recently broke my finger and can now only type with my right hand. This has seriously impacted my typing speed. Since I write software for a living, this is a serious problem.
I have been doing …
0
votes
1answer
75 views
Getting user input from Win32 C++. WPARAM casted as int?
I'm working on a pre-existing codebase and I'm looking to have the user type any 1-2 digits followed by the enter key at any time during the code being run and pass that number to a function. …
1
vote
1answer
28 views
Display keyboard without animation
Looked intoUIKeyboardAnimationDurationUserInfoKey but I just can't find anywhere how to set it to a custom value.
2
votes
3answers
71 views
How many pressed keys Flash can detect? using as3
I'm developing a little game. I use the following code to detect the keys pressed by the player:
private function onKeyDown(event:KeyboardEvent):void {
//moviment keys
if …
1
vote
0answers
56 views
How to use two keyboards simultaneously on a single computer w/windows? [closed]
I am working with a colleague on the same computer, but I would like the opportunity to work at the same time, I have two USB keyboards and two mouses and use Teamplayer to work with 2 mouses. but for …
0
votes
1answer
40 views
defaulting iPhone numeric keypad
Hi can anybody tell me how to show a default numeric keypad on iPhone rather than a character keypad.
0
votes
4answers
63 views
Check if a key is down?
Is there a way to detect if a key is currently down in JavaScript?
I know about the "keydown" event, but that's not what I need. Some time AFTER the key is pressed, I want to be able to detect if it …
5
votes
4answers
81 views
What is the best source for typo statistics?
I am looking for a reliable source that would provide some statistics on what keys are the most frequently mistyped.
For example: is "a" and "s" more commonly mistyped compared with "m" and "n"?
if …
