My app will need to simulate a key being held down during some time. I don't know how many time. Can I use the sendinput API for this?

link|improve this question

72% accept rate
feedback

1 Answer

up vote 1 down vote accepted

SendInput can trigger events with INPUT structures including KEYBDINPUT. A KEYBDINPUT can specify key up and key down events using virtual keys or scan codes. So you want to use SendInput twice: send a key down event at the beginning, and a key up event at the end.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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