Tagged Questions

0
votes
2answers
41 views

jquery: capture keycodes inside prototype function

hi, i'm trying to capture keystrokes inside my prototype function, here's my code: function txtBox(input) // pass textbox { this.id = "myTextbox"; this.txt = input } tx …
1
vote
3answers
70 views

change a keystroke passing a hook(c/c++)

hello! is it possible to edit a keystroke using a winapi keyboard hook? well, not neccesary a keyboard hook but something like it.. i wanna do something like this: user presses …
0
votes
2answers
90 views

Keystroke combinations in c# winforms app

Hi, does anyone know how i can setup an event handler so that if the keystrokes Alt + Shift + Ctrl + a letter will do something?
0
votes
1answer
20 views

Replace keystroke in Borland C++ Builder 6

Hi. I must replace keystroke when user typing in TextBox. When user type 123,456,789 text box must contain 123.456.789. Please HELP.
1
vote
2answers
68 views

Emulate keystroke in other window

This may be a cardinal programming sin, but what's the easiest and quickest way via executable or batch file to bring focus to Window X and hit keystroke Y? This won't be reused, a …
0
votes
2answers
552 views

How do I send key strokes to a window without having to activate it using Windows API?

    I have made an application already that sends commands to an activated window. I want to be able to use the computer while my process is running because as …
0
votes
4answers
185 views

Send keystroke to other control

Easy one for you guys. I have a textbox on top of a listbox. The textbox is use to filter ther data in the listbox. So... When the user type in the textbox, I would like to "tra …
0
votes
2answers
54 views

KeyBoard Stroke Events

what i want to do is have a background application which by itself or its modules run only when a certain key is pressed. Like when i press F10 some code that i have written execut …
0
votes
1answer
115 views

how to register KeyStroke on JXDatePicker

I need to transfer focus onto another element when user press Enter key, so I succeded to register KeyStroke on most elements this way: this.getInputMap( ).put( KeyStroke.getKey …
0
votes
3answers
387 views

Capture Keystrokes on Symbian OS?

Hey, How would one go about capturing users keystrokes in the SMS composer on the Symbian OS, specifically for a Nokia N73 (or any of the symbian supported devices http://en.wikip …
1
vote
5answers
448 views

Windows Systems Programming: Can a keystroke be sent to an open application that is not the currently active one?

I'm a bit rusty on my Windows system programming... Is it possible for a program to send a keystroke (I'm guessing by SendMessage() api call) to another application, if the (open) …
3
votes
2answers
2k views

Application wide keyboard shortcut - Java Swing

Hello, I would like to create an application wide keyboard shortcut for a Java Swing application. Looping over all components and adding the shortcut on each has focus related sid …
3
votes
2answers
88 views

Making a .NET Windows application show-up on keystroke

My application resides mostly on the system tray on minimize. I'd like the user to be able to hit a keystroke (like ALT+SHIFT etc.) and it shows up on the screen (sort of like Laun …
0
votes
0answers
193 views

Windows XP keystroke caching broken [closed]

I use a lot of keyboard shortcuts. I've customized my start menu so that starting letters are unique, so I can hit [start],p,o,e for Programs->Office->Excel. Used to be I could h …