What is AsyncKeyDown used for?

@Dale_Arends

No. You have to do “your stuff” BEFORE returning true:

If Keyboard.AsyncKeyDown (&h74) Then ' the PageUp key
  // do stuff with the Key value, eg
  Speak “OW! Please don’t poke me with this key!”
  Return True
End If
1 Like