keyboard

remap keyboard key in wpf

I have a wpf application that uses several Telerik RadNumericUpDown controls to enter measurements. Turns out that the Telerik control only accepts "." from the numeric keypad (next to the 0 on the right side of the keyboard). Most of my clients have laptops, and so they don't have this button, but they have the "." next to the "," and...

android app specific soft keyboard

Hi, Is there a way to create an app specific soft keyboard on Android? After reading about InputMethodService docs and checking out alternative keyboard apps out there, I figure the alternate keyboard can only be configured for system wide usage (through Settings -> Locale and Text). If the answer to above question is no, then is there...

Can we turn on/off Scroll Lock light by software instructions?

Is it possible to turn on/off Scroll Lock light by software instructions like outb or something else? And if the answer is yes, can we restrict the use of these instructions so that they are only allowed in ring-0? ...

screen keyboard , or virtual keyboard component

i am making a keyboard c# control. it has to detect the installed and active keyboard and reproduce it on screen. i would like to iterate all keys in the currently attached(configured) keyboard, but all solutions i found on this site and on the internet use fixed layouts or a range of fixed layouts i would like to know which keys-keyc...

How to map Delete and End keys on tcsh shell ?

I use tcsh , and when Delete/End is pressed on cmd line, it simply shows up as ~ ; I have to press <Ctrl><e> to go to end of line. Can anyone help me to be able to use Delete/End keys as their name suggests ? ...

Catching keyboard events in a Cocoa app WebView

I have a Cocoa app that embeds a WebView. I'd like to intercept a keyboard shortcut so that I may perform an action in the WebView. I do not want to implement a menu item for this action. In fact, ideally I only want this shortcut to apply when the user is in a textarea box in the WebView. How do I catch the keyboard shortcut so that I...

Android Softkeyboard OnTouchListener

Hey Guys This time my question is rather short: Is it possible to add to the Softkeyboard an OnTouchListener? Like u can do it for an ordinary EditText field. Or is there any other way to implement an OnTouchListener above the Softkeyboard? Thanks in advance Ripei ...

Android editview done button

When user click at the editview android opens the keyboard so that user can write in the editview.. problem is when user is done with writing there is no way to hide the keyboard and user have to press back button to hide the keyboard.... is there a way to display done button over the keyboard when user is done with writing text done b...

In writing games that deal with scancodes, what do I need to know to support international keyboards on Mac and PC?

I am writing an input system for a game that needs to be able to handle keyboard schemes that are not just qwerty. In designing the system, I must take into consideration: Two types of input: standard shooter controls (lots of buttons being pressed and raw samples collected) and flight sim controls (the button's label is what the user...

Keyboard not show onload

Hello I want the keyboad show automatically onload, but it did not work as i expect here is the code i use: - (void)viewDidLoad { [super viewDidLoad]; [seachBar2 setDelegate:self]; } - (BOOL)Searchbar2ShouldReturn:(UISearchBar *)searchBar2 { [searchBar2 becomeFirstResponder]; return YES; } Coud somebody will poi...

Button substitute keyboard

i am creating a virtual for my application in IMK(input method kit) i failed to simulate keyboard event by pressing a button. is there any library i can used for the simulation? is there any materials/solutions i can reference to? thanks Reply With Quote ...

iPhone prevent rotation of keyboard to landscape...

So, I'm putting some controls over an MPMoviePlayerController and I'm intending this to be used in portrait mode, simply by using video that is shot vertically. My only problem is that for text entry the keyboard comes up in landscape. Now, I realize that there is an undocumented way to set the orientation of the player, but I'd rather...

move up UIToolbar

I have UIToolbar at bottom of my view. And I have UITextField in this toolbar. When I begin editing this field keyboard hide it. And to see what i type I want to move toolbar up at the moment of showing keyboard (and move down then finish editing). How to move up/down UIToolbar? ...

Windows keyboard accelerators and child windows

I have created a Windows GUI program using C and the Windows API, and I want the program to utilise keyboard accelerators. I have set up some accelerators, which are working correctly, but when focus goes to a child Window of my program's main window, such as a list view control or a status bar control, it appears that the keyboard accel...

Remove Done Button From Number Pad upon a New Keyboard Loading

Alright, I'll try to explain this the best I can. I have an iPhone app and it has a text field which the user can only input Numbers. Not a problem there. However, there is no done button on the numpad, so I can't make it disappear. I could make a button that the user presses to dismiss the keyboard, but I'd rather have a done button...

Javascript keystroke trapping when characters entered very rapidly

We are writing an ExtJS application that relies in large measure on trapping a users keystrokes. However I believe I have discovered a "timing issue" in that, when the keys are pressed too rapidly, unexpected behavior manifests, specifically in our case, duplicate entries get added to an array being buffered in memory. I have an idea f...

Keyboard shortcuts JQUERY - Command+S, Control+S

I have a text editor on my site and I want users to be able to use keyboard shortcuts to save, just like they would in Microsoft Word. For the Mac: Command + S For the PC: Control + S What is the best way to accomplish this in JQUERY? Also, this will be used to save content in CKEDITOR, which uses an iFrame, not sure if that's an issue...

SetWindowsHookEx global keyboard hook not catching all keypresses

I'm writing code that is part of an automation system. I wanted to add a keyboard hook to end the test prematurely, and I did this by using SetWindowHookEx. My code looks pretty much like this: http://support.microsoft.com/kb/318804 Here's my SetWindowsHookEx call: hHook = SetWindowsHookEx(WH_KEYBOARD_LL, KeyboardHookProcedure, GetMo...

How to Disable autocomplete in UITextView iPhone keyboard

Hello, I am doing the application in which I want to disable the autocomplete feature of the keyboard in a textfield. Please help me as I am new to iPhone Thanks & Regards Rajesh ...

Button to show virtual keyboard?

I have a ListView and it is possible to use the hardware keyboard to filter out items. However what should I do for phones that don't have a hardware keyboard and only a virtual one? Is there a way to add a button that when pressed, the virtual keyboard shows up? ...