Caps Lock Status

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I need to find the status of the caps lock on the Pocket PC. Can someone
please tell me how can I do this using C# or any other language.

Thanks and Regards,
Rakesh
 
I'm not sure that this is the 'right' way to do it, but you can check that
via a P/Invoke to GetKeyState(). It should be in coredll.dll and you should
be able to get the caps lock state by passing it VK_CAPITAL. Obviously,
you'll need the C++ SDK for a device to get the declaration and the value of
VK_CAPITAL.

Paul T.
 
Back
Top