Menu

char keys

Help
2009-09-18
2013-05-09
  • Jiang Fung Wong

    Jiang Fung Wong - 2009-09-18

    is there a hook to character keyboard events, i.e. keyboard events that will yield chars in a notepad when sent to it?

    e.g. a, b, c, d are
    Left, Right Down, Up, Ctrl+C are not

     
  • nanotube

    nanotube - 2009-09-18

    There's no special hook - you can hook all keyboard events, and then just check to see if the key's ascii value is in the right range.

    as a general rule,  non-zero ascii-value keys would produce visible results in notepad.

    refer to an ascii table for more details (e.g. here: http://www.asciitable.com/ )

    hope that helps.

     

Log in to post a comment.