vote up 1 vote down star

I'm wondering if its possible to make a program in C++ that can "press" keys, or make the computer think certain keys have been pressed, and do things like make a program that "plays" games, or automatically enter some long and obscure button sequence that no one could remember.

(I can't think of any right now, but savegame passwords might be an example, especially when you can't just type it, but have to move a cursor to the letter you want, then press enter or something).

Just wondering.

flag

3 Answers

vote up 0 vote down

RaymondC suggests that this is a bad idea in general:

http://blogs.msdn.com/oldnewthing/archive/2005/05/30/423202.aspx

If you really want to make a convincing keyboard, you have to write a device driver that pretends to be a keyboard. In a pinch though, or if you're writing testing code, SendInput will do it.

link|flag
vote up -1 vote down

Lookup the CallNextHookEx function in the MSDN documentation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.