KeyPress

  • Thread starter Thread starter Catalin Lungu
  • Start date Start date
C

Catalin Lungu

Hi,
How can I desactivate a key of PDA. Is a function key (F24) of WindowsCE. In
the KeyDown event of a control if e.keydata == keys.F24 I switch e.Handled =
true but without success.

It's for an application where I need that users can't touch other keys that
them need.

Thank you,
C.
 
You can't prevent the keys from being sent. At most, you can ignore the
keys that you don't want to have do something in your application and, if
they might be hot keys to activate other applications or perform other
operations, you might be able to prevent those applications from coming to
the front or kill them to prevent them from performing whatever process the
key fires.

Paul T.
 
Back
Top