Jump to content

Key press detection

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
mshanks

mshanks

    Newbie

  • Members
  • Pip
  • 1 posts
Hey all,

I'm quite new to programming so apologies if I'm being stupid asking this.

I've made a little Windows (xp) application using Visual Studio - one of the features I want for it is to detect key presses.

I have an integeter, counter, that starts at 100. I want it to decrement by 1 each time the user presses any key on their keyboard. After 1 minute, it will reset to 100.

It also needs to do this regardless of whether the application window is the active window or in the background.

If any one could point me in the right direction with this I'd greatly appreciate it.

Thanks,

- mshanks

#2
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts
I'm not a Windows programmer, but I remember that GetAsyncKeyState is able to receive keyboard inputs no matter if it's inactive or active. It's found in user32.dll.