active questions tagged keyboard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T08:04:58Zhttp://stackoverflow.com/feeds/tag/keyboardhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870038/how-can-i-show-a-uidatepicker-instead-of-a-keyboard-when-a-user-selects-a-uitextf1How can I show a UIDatePicker instead of a keyboard when a user selects a UITextField?Ben S2009-12-08T21:40:26Z2009-12-08T21:46:25Z
<p>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.</p>
<p>I'd like to have it so that when the user selects the birthday field, a view containing a UIDatePicker would come up as, just like the different keyboards do when selecting a text field.</p>
<p>Can this be done? I would have to prevent the text field from being the first responder (to avoid having the keyboard come up) and I would have to animate the view sliding up if no keyboard was showing before.</p>
<p>Would presenting the view modally be an option? If so how would I go about doing it? From the documentation it seems that modal views still take up the whole screen, I just want to use the lower 216 pixels (height of the keyboard and UIDatePicker).</p>
<p>Any one have any tips on how to go about doing this?</p>
http://stackoverflow.com/questions/1842560/uitableview-wont-scroll-after-editing-view-frame-and-origin0UITableView won't scroll after editing view frame and originoohaba2009-12-03T20:10:24Z2009-12-08T03:08:18Z
<p>I'm trying to implement a UITextView in a table cell at the bottom of a table view.</p>
<p>I've tried the suggestions here <a href="http://stackoverflow.com/questions/594181/uitableview-and-keyboard-scrolling-problem">http://stackoverflow.com/questions/594181/uitableview-and-keyboard-scrolling-problem</a>, and other solutions as well, but they're a bit different because I have to artificially add extra height to the current view in order to create space for the keyboard.</p>
<p>Here's what I added to the previous solution in order to port it to my app.</p>
<pre><code>-(void) keyboardWillShow:(NSNotification *)note {
CGRect frame = self.view.frame;
frame.size.height += keyboardHeight;
frame.origin.y -= keyboardHeight;
self.view.frame = frame;
}
-(void) keyboardWillHide:(NSNotification *)note
{
CGRect frame = self.view.frame;
frame.size.height -= keyboardHeight;
frame.origin.y += keyboardHeight;
}
</code></pre>
<p>Doing this will correctly add the height to the view and scroll to the cell, but after restoring the original view's height, scrolling beyond the current visible view becomes impossible, even though there is valid content outside of the boundaries (I see the text view before the scroll bar bounces back).<br>
If I try to save the tableview's frame or bounds (not the view) in keyboardWillShow and restore them in keyboardWillHide, the scrolling will be restored, but the view will be cut in half.</p>
<p>Are there any remedies to this besides hard-coding the additional height to the bottom of the view? </p>
http://stackoverflow.com/questions/1861195/ctrl-key-press-condition-in-wpf-mouseleftbuttondown-event-handler0Ctrl key press condition in WPF MouseLeftButtonDown event-handlerrem2009-12-07T16:40:57Z2009-12-07T16:50:55Z
<p>How I can add additional condition of certain keyboard key, say, Ctrl-key state to WPF MouseLeftButtonDown event-handler?</p>
<pre><code>private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
...
}
</code></pre>
http://stackoverflow.com/questions/1456599/cant-get-rid-of-the-keyboard-in-uitextview0Can't get rid of the keyboard in UITextViewAlex19872009-09-21T20:15:37Z2009-12-07T14:50:14Z
<p>Hi</p>
<p>I have a table and in one of the cells I keep a UITextView. When the user taps it the keyboard appears. I was trying various ways to get rid of it. My first approach was to detect a tap on the table cell of the UITextView, but since the text view takes most of it, it's not suitable. Then I tried to add a button to the toolbar and whenever the user presses it, the keybord disappears with resignFirstResponder, but it won't work. It seems that only when I'm in the same view as the UITextView resignFirstResponder works. So how can I get rid of the keyboard from a different view? </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1858950/set-custom-keyboard-for-android-application1Set custom keyboard for android applicationdAnjou2009-12-07T09:50:00Z2009-12-07T09:50:00Z
<p>Hi,</p>
<p>i know that there is the possibility to set a special keyboard with <a href="http://developer.android.com/intl/de/reference/android/widget/TextView.html#attr%5Fandroid%3AinputType" rel="nofollow">these attributes</a>. But i need my own keyboard as default. How can i do that? How can my app change the settings?</p>
<p>As an example, let's say: i want the example SoftKeyboard as default for my app.</p>
<p>Is that even possible?</p>
<p>Thanks for your efforts :)</p>
http://stackoverflow.com/questions/1850724/getting-user-input-from-win32-c-wparam-casted-as-int0Getting user input from Win32 C++. WPARAM casted as int?Chris2009-12-05T01:19:28Z2009-12-06T18:29:48Z
<p>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. Currently, user input is handled like so:</p>
<pre><code>LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
int wmId, wmEvent;
switch (message)
{
case WM_KEYDOWN:
Engine::GetInstance()->GetInput()->GetKeyboard()->SetKeyPressed(static_cast<int>(wParam));
break;
//snip
</code></pre>
<p>Now, I'm not sure of a few things,</p>
<ul>
<li><p>a) Why would the keypressed be passed as an integer rather than a character? </p></li>
<li><p>b) What would be the result of "F1" being sent in this case aaand</p></li>
<li><p>c) How can I use this to read in a 1-2 digit number and pass that only when enter is pressed?</p></li>
</ul>
http://stackoverflow.com/questions/1650916/selecting-good-non-conflicting-keybindings-for-a-game6Selecting good, non-conflicting keybindings for a gameStefan Monov2009-10-30T16:32:49Z2009-12-06T11:35:55Z
<p>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 don't react to pressing.</p>
<p>My game has two users at the same PC control two characters in realtime (i.e. not turn based). An instance of the problem: player 1 holds Up and Left to go in that diagonal direction. Player 2 is then unable to go to the right (with "D"). Beyond being merely annoying, it can give an unfair advantage to a player who opts to use the bug as a cheat. Not fun :(</p>
<p>The basic commands are: shooting, walking left and right, and jumping. Shooting is done with LeftControl and RightControl, which don't conflict with anything, so let's consider only the movement keys.</p>
<p>On my laptop, most obvious keybinding combinations fail:</p>
<ul>
<li>WAD and arrow keys fails with Up+Left+S and Up+Left+D</li>
<li>IJL and arrow keys fails with Down+Right+J (though Down is technically unused, a player often holds it down anyway)</li>
<li>arrow keys and numpad keys fail with Down+Left+NumpadLeft</li>
<li>all-letter combos like WAD and IJL tend to work, but I don't like leaving the arrowkeys unused, and crowding the users' hands together.</li>
</ul>
<p><strong>Is there a website</strong> that list statistics of common supported keycombos on various keyboards, to help me make my decision for defaults? (they're configurable, but defaults matter.) I seem to recall a relevant site called keyboardssuck.com, but I can't find it now.</p>
<p><strong>How have you dealt</strong> with this problem? Just ignored it?</p>
<p><strong>Does the problem depend</strong> on the OS, the API, the mobo? On anything else? I think it only depends on the keyboard model, but gotta ask.</p>
<p>edit: Now I know what this is called: <a href="http://en.wikipedia.org/wiki/Rollover_(key)" rel="nofollow">"rollover"</a></p>
http://stackoverflow.com/questions/500602/os-x-terminal-meta-key-alt-functionality-at-the-same-time3OS X Terminal: Meta key + alt functionality at the same timeabababa222009-02-01T11:08:55Z2009-12-05T21:09:16Z
<p>Is there a way to use "alt/option" key as a meta key but still be able to use the key to make some characters which need it?</p>
<p>For example in my local keyboard layout:
@ is alt-2
\ is alt-shift-7
| is alt-7</p>
<p>etc. So if I set alt as meta key, I can't make those characters. On the other hand using "press esc, release esc, press a key" to make meta key sequences makes my hands hurt.</p>
<p>Any emacs users with international keyboards who have solved this, please give any tips you might have! :)</p>
<p>edit:
It appears that I can set alt as meta key and then add these kind of settings in inputrc: "\e2": "@" This works in bash shell but it still won't work with emacs though, so no good.</p>
http://stackoverflow.com/questions/1851566/display-keyboard-without-animation1Display keyboard without animationSam V2009-12-05T08:17:35Z2009-12-05T10:01:04Z
<p>Looked into<code>UIKeyboardAnimationDurationUserInfoKey</code> but I just can't find anywhere how to set it to a custom value.</p>
http://stackoverflow.com/questions/1841095/how-to-use-two-keyboards-simultaneously-on-a-single-computer-w-windows1How to use two keyboards simultaneously on a single computer w/windows? [closed]appmaster2009-12-03T16:27:28Z2009-12-05T00:46:23Z
<p>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 now can only write with one keyboard. Anybody know any program or how to work two keyboards on windows?</p>
http://stackoverflow.com/questions/1846777/defaulting-iphone-numeric-keypad0defaulting iPhone numeric keypaduwillneverknow2009-12-04T12:49:54Z2009-12-04T12:57:17Z
<p>Hi can anybody tell me how to show a default numeric keypad on iPhone rather than a character keypad.</p>
http://stackoverflow.com/questions/1109022/how-to-close-hide-the-android-soft-keyboard4How to close/hide the Android Soft Keyboard?PHP Jedi2009-07-10T11:27:17Z2009-12-04T10:01:27Z
<p>Im having an EditText and a Button in my layout. After writing inside the edit field and click on the Button, i want to hide the virtual keyboard. I guess there should be a simple, one or two liner to make this happen, but cant find any example of it.</p>
<p>Anyone with a suggestion?</p>
http://stackoverflow.com/questions/1344598/keyboard-and-mouse-interaction-on-linux0Keyboard and mouse interaction on LinuxRichard2009-08-28T01:32:13Z2009-12-04T01:42:35Z
<p>I use Linux because it is a superior development environment to Windows. However I recently came across a Windows library called <a href="http://www.autohotkey.com" rel="nofollow">AHK</a> that gives me great control to interact with applications.</p>
<p>Is there an equivalent in the Linux world?</p>
http://stackoverflow.com/questions/52492/what-is-the-best-way-to-avoid-getting-emacs-pinky6What is the best way to avoid getting "Emacs Pinky"?Ray Vega2008-09-09T18:08:44Z2009-12-03T21:04:15Z
<p>I just started using GNU Emacs as my text editor and I am concerned about getting afflicted with "<a href="http://en.wikipedia.org/wiki/GNU_Emacs#Emacs_Pinky" rel="nofollow">Emacs Pinky</a>" by having to constantly press the control key with my pinky finger as is required when using Emacs. How can I avoid potentially getting this type of repetitive strain injury?</p>
http://stackoverflow.com/questions/1827691/is-this-a-uikit-bug0Is this a UIKit bug?Tomen2009-12-01T17:28:33Z2009-12-03T06:03:51Z
<p>I am not sure if this bug really comes from my app or maybe really is a UIKit bug. Maybe someone here can clarify this.</p>
<p>There is a tableview. Each cell offers a disclosure-button to a "settings"-like screen that is a modal view. The modal view can be closed via a "Close"-button.</p>
<p>The modal view contains a UITextView.</p>
<p>Now here comes the bug:
The user holds a key that offers similar characters( eg: a -> ä á à ... ). When the user holds that key, the characters get offered and the first one gets selected blue. If the user holds this button and simultaneously clicks the "Close" Button. The modal view disappears and the table view shows up. The keyboard goes away, but the {a á ä à} menu is still visible for about a second. Then the app crashes.</p>
<p>This can only be reproduced on the device, since you cannot press two buttons simultaneously.</p>
<p>Here is a stack trace</p>
<pre><code>Date/Time: 2009-12-01 17:39:31.048 +0100
OS Version: iPhone OS 3.0.1 (7A400)
Report Version: 104
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x00000008
Crashed Thread: 0
Thread 0 Crashed:
0 libobjc.A.dylib 0x300102ac objc_msgSend + 16
1 UIKit 0x308ffda0 -[UIKeyboardImpl hasMarkedText] + 20
2 UIKit 0x309161b2 -[UIKeyboardImpl updateShiftState] + 230
3 UIKit 0x309224c0 -[UIKeyboardImpl handleObserverCallback] + 72
4 UIKit 0x30922466 observerCallback + 14
5 CoreFoundation 0x3020bf38 __CFRunLoopDoObservers + 420
6 CoreFoundation 0x30252e46 CFRunLoopRunSpecific + 1734
7 CoreFoundation 0x3025276a CFRunLoopRunInMode + 42
8 GraphicsServices 0x32044b08 GSEventRunModal + 108
9 GraphicsServices 0x32044bb4 GSEventRun + 56
10 UIKit 0x308f035c -[UIApplication _run] + 384
11 UIKit 0x308ef11a UIApplicationMain + 694
12 **** 0x00002360 main (main.m:14)
13 **** 0x000022fc start + 44
Thread 1:
0 libSystem.B.dylib 0x31d47624 semaphore_wait_signal_trap + 8
1 libSystem.B.dylib 0x31d702de semaphore_wait_signal + 2
2 libSystem.B.dylib 0x31d49c9c pthread_mutex_lock + 284
3 WebCore 0x35866fa6 __ZL17_WebTryThreadLockb + 98
4 WebCore 0x35866f22 __ZL14WebRunLoopLockP19__CFRunLoopObservermPv + 14
5 CoreFoundation 0x3020bf38 __CFRunLoopDoObservers + 420
6 CoreFoundation 0x30252db0 CFRunLoopRunSpecific + 1584
7 CoreFoundation 0x3025276a CFRunLoopRunInMode + 42
8 WebCore 0x35866ed2 __ZL12RunWebThreadPv + 286
9 libSystem.B.dylib 0x31d6a6ea _pthread_body + 10
</code></pre>
http://stackoverflow.com/questions/1837353/one-handed-coding-tablet-special-keyboard-one-handed-typing8One handed coding -- tablet, special keyboard, one-handed typing?Nick Martin2009-12-03T02:56:29Z2009-12-03T03:52:25Z
<p>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.</p>
<p>I have been doing some research, but haven't found a great solution yet. Here's what I've come up with:</p>
<ol>
<li><p>Wacom tablet + hand writing recognition software. Is it possible to write code with hand writing recognition software?</p></li>
<li><p>one handed keyboards -- I have only found expensive (> $100) keyboards. These look like they have a steep learning curve.</p></li>
<li><p>one handed typing instructions: <a href="http://www.aboutonehandtyping.com/manualcompare.html" rel="nofollow">http://www.aboutonehandtyping.com/manualcompare.html</a>. Does this really work?</p></li>
</ol>
<p>What do the one handed coders out there use?</p>
http://stackoverflow.com/questions/1643676/how-to-repeat-key-strokes-with-sendinput1How to repeat key strokes with SendInput?LonelyPixel2009-10-29T13:20:30Z2009-12-02T04:24:10Z
<p>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 every key press and release event. The playback works with the SendInput() function and generally also works fine - except for repeating key strokes. Pressing a key several times after releasing it every time is no problem. But pressing it and holding it down, for the input character to be repeated, can be recorded but can only be replayed in some applications. Some accept and enter the character multiple times, some do it only once. (It is reproducible which does which.) The macro recorder itself also sees the held down key pressed just a single time during playback, through its monitoring hook.</p>
<p>So, how can I make SendInput send multiple subsequent key strokes of a single key without adding key release events on my own in between? Sending a sequence of [press] [press] [press] ... [release] doesn't always work.</p>
http://stackoverflow.com/questions/1824555/how-many-pressed-keys-flash-can-detect-using-as32How many pressed keys Flash can detect? using as3Ricardo2009-12-01T07:29:39Z2009-12-02T04:21:29Z
<p>I'm developing a little game. I use the following code to detect the keys pressed by the player:</p>
<pre><code>private function onKeyDown(event:KeyboardEvent):void {
//moviment keys
if (event.keyCode == 37 || event.keyCode == 65) {
this.leftKeyPressed = true;
}
if (event.keyCode == 39 || event.keyCode == 68) {
this.rightKeyPressed = true;
}
if (event.keyCode == 38 || event.keyCode == 87) {
this.upKeyPressed = true;
}
if (event.keyCode == 40 || event.keyCode == 83) {
this.downKeyPressed = true;
}
if (event.keyCode == this.shootKey) {
this.shootKeyPressed = true;
}
}
</code></pre>
<p>The onKeyUp event:</p>
<pre><code>private function onKeyUp(event:KeyboardEvent):void {
if (event.keyCode == 37 || event.keyCode == 65) {
this.leftKeyPressed = false;
}
if (event.keyCode == 39 || event.keyCode == 68) {
this.rightKeyPressed = false;
}
if (event.keyCode == 38 || event.keyCode == 87) {
this.upKeyPressed = false;
}
if (event.keyCode == 40 || event.keyCode == 83) {
this.downKeyPressed = false;
}
if (event.keyCode == this.shootKey) {
this.shootKeyPressed = false;
}
if (event.keyCode == changeColorKey) {
trace('color key released');
trace(getTimer());
this.changeColorKeyPressed = true;
}
}
</code></pre>
<p>Basically the shootKey will be hold down by the player almost all the time. And the changeColorKey will be pressed very often but not hold down. While testing I noted that holding the shootKey and the right arrow down, the onKeyUp events for the changeColorKey don't get fired. Holding the up or down arrow key instead of the right arrow has the same effect. If I hold the left arrow key the events get fired. Why does it occour? Is there something wrong with my code?</p>
http://stackoverflow.com/questions/1571700/disable-ctrl-up-arrow-home-on-datagridview0Disable CTRL + Up Arrow = Home on DataGridViewtomaszs2009-10-15T11:12:54Z2009-12-02T00:49:30Z
<p>When I press CTRL and Up Arrow on DataGridView I go to the first row. When I do the same with Down Arrow I go to last row in DGV. How to disable this behavior in this direction that when I will do CTRL+Up I will go one row up and when I do CTRL+Down I go one row down?</p>
http://stackoverflow.com/questions/1828613/check-if-a-key-is-down0Check if a key is down?Daniel X Moore2009-12-01T20:17:23Z2009-12-01T20:47:03Z
<p>Is there a way to detect if a key is currently down in JavaScript?</p>
<p>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 is still pressed down.</p>
<p>P. S. The biggest issue seems to be that after some period of time the key begins to repeat, firing off keydown and keyup events like a fiend. Hopefully there is just a simple isKeyDown(key) function, but if not then this issue will need to be overcome / worked around.</p>
http://stackoverflow.com/questions/733721/android-activation-of-the-system-key-lock3Android - Activation of the system key lockJohannes Weiß2009-04-09T10:58:27Z2009-12-01T10:12:26Z
<p>I have to activate android's system key lock (the one you get when you press the <em>power off</em>/<em>hang up</em> button). See here:</p>
<p><img src="http://farm4.static.flickr.com/3202/2849046033%5Ffd42359cef.jpg" alt="img" title="" /></p>
<p>I already browsed the docs but everything I found was <a href="http://developer.android.com/reference/android/os/PowerManager.html" rel="nofollow">PowerManager</a> and <a href="http://developer.android.com/reference/android/app/KeyguardManager.html" rel="nofollow">KeyguardManager</a>. Both seem not to be the solution :-(.</p>
<p>So, does everyone know how to achieve that from a android application? (If special permissions are required, that is no problem but changing the device's settings is not a solution...)</p>
<p><strong>EDIT</strong>: Or does someone know that this is definitely not possible at all? Btw. craigs solution with sending keys does not work anymore (see comments).</p>
<p>(Target platform: Android 1.0 / upcoming Android 1.5)</p>
http://stackoverflow.com/questions/1801647/what-is-the-best-source-for-typo-statistics5What is the best source for typo statistics?unknown (google)2009-11-26T05:08:51Z2009-12-01T01:25:09Z
<p>I am looking for a reliable source that would provide some statistics on what keys are the most frequently mistyped.</p>
<p>For example: is "a" and "s" more commonly mistyped compared with "m" and "n"?</p>
<p>if yes what are the underlying data i.e. "a" is mistyped instead of "s" when the previous letter is "o" in 25% of cases but contrary "s" is mistyped more often instead of "a" when the previous character is "r." Etc.</p>
http://stackoverflow.com/questions/455525/is-the-switch-to-dvorak-worth-it26Is the switch to Dvorak worth it?Kevin Weil2009-01-18T17:27:56Z2009-11-29T23:07:42Z
<p>To those who were experienced (> 70 WPM, say) typists before the switch to Dvorak -- were you faster after switching? </p>
<p>There are a couple good SO threads on Dvorak, but they are more on <a href="http://stackoverflow.com/questions/88010/what-is-the-best-way-to-learn-dvorak">how to learn</a> or <a href="http://stackoverflow.com/questions/171597/dvorak-vs-qwerty">reduction in typing pain</a> than speed before/after. I know it will take me 1-2 months to feel comfortable, but I want to know if I should expect to be faster afterward. I am a programmer and type maybe 90-110 WPM on QWERTY.</p>
<p>EDIT: I agree that coding is not typically IO-bound, and that a minimum typing speed is sufficient. This is half from curiosity, but it will be an undertaking to achieve QWERTY parity, so I want to know if I should at least expect some asymptotic improvement.</p>
http://stackoverflow.com/questions/1816287/multilingual-virtual-keyboard-in-java1Multilingual virtual keyboard in javasanthosh2009-11-29T18:22:43Z2009-11-29T19:29:58Z
<p>Hi all, </p>
<p>I am planning to create a multi lingual keyboard using Java. can u give some ideas or suggestions for doing that? Is there any open source code or interface which i can use in my code?</p>
http://stackoverflow.com/questions/1521986/how-do-i-read-events-from-a-hid-device-under-ubuntu-jaunty0How do I read events from a HID device under Ubuntu Jaunty?pts2009-10-05T19:40:17Z2009-11-29T09:00:04Z
<p>I have a Linux USB HID device (a <a href="http://www.dh.hu/ingatlan/LK051889" rel="nofollow">Hama MCE</a>), and I can read its events manually by reading <code>cat /dev/input/event7</code> and <code>cat /dev/input/event8</code>. Whenever I press a key on the device, a few bytes become available for reading with one of the <code>cat</code> commands above. I have a default installation of Ubuntu Jaunty 64-bit desktop on the machine.</p>
<p>I think I can write a parser to interpret the bytes emitted by the device, or I'll use <a href="http://libhid.alioth.debian.org/" rel="nofollow">libhid</a> if it's more convenient.</p>
<p>My questions are:</p>
<ol>
<li>How do I prevent the text-mode virtual consoles from receiving some of the key presses on the device as normal keypresses? As of now, some device keys result an <em>Enter</em>, a <em>BackSpace</em>, a <em>PageUp</em> or numeric keypad numbers.</li>
<li>Similarly, how do I prevent the X server from receiving keyboard and mouse events from this device? I have several USB keyboards and mice connected to the computer. I want the X server receive events from all of them, except for this device.</li>
<li>How do I set up that whenever the device gets connected to the computer, the command <code>/usr/local/bin/keydumper /dev/input/event7 /dev/input/event8</code> (or one command for each <code>/dev/</code> path) would get run, with the proper <code>/dev/</code> paths substituted in the command line? </li>
</ol>
http://stackoverflow.com/questions/1812900/keyboard-having-to-press-keys-hard-3Keyboard having to press keys HARD [closed]Webnet2009-11-28T16:15:05Z2009-11-28T23:15:35Z
<p>I'm having trouble with a keyboard on a PC. When you press the keys the computer beeps, if you hold the keys down for 1.5 secs it'll beep a second time and then the key shows up in notepad, a browser, or whatever you're typing in. If you just press the button as normal nothing happens.</p>
<p>I've tried getting a brand new keyboard and the same thing happens. I've tried installing/uninstalling the keyboard and no results.</p>
http://stackoverflow.com/questions/1796183/iphone-textfields-keyboard-how-to-disable-second-textfield-until-first-one-has0iPhone textfields/keyboard - how to disable second textfield until first one has been completedhappyhammer832009-11-25T11:00:19Z2009-11-25T18:46:36Z
<p>Hi,</p>
<p>I have a login screen with two textfields (username and password). When the user clicks on either textfield, the keyboard appears and everything is fine. However, if the user clicks on the other textfield before clicking Done (on the keyboard) for the first textfield, the text for the username isn't saved. The only way to save the original textfield text is by clicking back on it and selecting Done then.</p>
<p>I would like to disable the other textfield from displaying the keyboard while the first textfield's keyboard is still open, if that makes sense? I know there's ways to stop textfields from being editable but how can I tell when there is already a keyboard open? </p>
<p>Another solution may be to disable the keyboard whenever the user clicks anywhere outside of the textfield? How would I do this?</p>
<p>Here's my code:</p>
<p>textFieldEmail = [[UITextField alloc] initWithFrame:frame];</p>
<p>textFieldEmail.keyboardType = UIKeyboardTypeEmailAddress;</p>
<p>textFieldEmail.returnKeyType = UIReturnKeyDone;
textFieldEmail.tag = 0;
textFieldEmail.delegate = [[UIApplication sharedApplication] delegate];</p>
<p>textFieldPassword = [[UITextField alloc] initWithFrame:frame];</p>
<p>textFieldPassword.keyboardType = UIKeyboardTypeEmailAddress;</p>
<p>textFieldPassword.returnKeyType = UIReturnKeyDone;
textFieldPassword.tag = 1;
textFieldPassword.delegate = [[UIApplication sharedApplication] delegate];</p>
<ul>
<li><p>(BOOL) textFieldShouldReturn:(UITextField *)textField {</p>
<p>[textField resignFirstResponder];</p>
<p>return YES;</p></li>
</ul>
<p>}</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1671527/keyboard-assignment-in-visual-studio1Keyboard Assignment in Visual StudioEvs2009-11-04T03:24:25Z2009-11-25T14:29:28Z
<p>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 |. When this happens it only affects the current instance of VS - even if I have multiple VS windows open. Only VS is affected - Notepad and other windows apps are fine. Closing and then reopening the solution I was working on in a new VS 2008 instance resolves the problem.</p>
<p>Does anyone have any idea what key combination I have accidentally pressed to cause this? And how to revert it?</p>
http://stackoverflow.com/questions/1779374/winforms-handling-all-keys-onkeypress-onkeydown-but-how0WinForms, Handling all keys = OnKeyPress + OnKeyDown, but how?argh2009-11-22T17:40:24Z2009-11-25T09:52:23Z
<p>I've got one Form, custom drawing, no controls. </p>
<p>When I need to get the input from the user I go to OnKeyDown event and then map event's KeyData to a string** - so that I can recognize that user has pressed "ctrl X", etc, so everything is almost ok... the problem is with different keyboard settings and language specific letters - so for today my users get </p>
<p>ã -> a</p>
<p>ó -> o</p>
<p>So I need the KeyPress event right? But how do I know that user typed in for example 'ł' and not alt+L? I can't get my head around that for a while now... </p>
<p>** - I need to do it like that since I let users to configure shortcuts and using .ToString() produces not so user friendly text like "OemPeriod, Control" or even better: "ControlKey, Control"</p>
http://stackoverflow.com/questions/1791859/custom-android-keyboard-input-filtering0Custom Android Keyboard Input Filteringspaceboy20002009-11-24T18:04:02Z2009-11-24T23:29:06Z
<p>I have an EditText that is to collect input for a basic calculator. I want to bring up the numeric keyboard, and thus I set android:inputType to numberDecimal|numberSigned. Problem is, the EditText filters out all characters that aren't numeric, such as "(", ")", "/", "*".</p>
<p>I have tried overriding this behaviour by setting a custom InputFilter which filters nothing out, but it seems to have no affect on the EditText. Is there any way for me to display the numeric soft keyboard without the filtering behaviour?</p>