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

Re: Caps Lock Status by Paul

Paul
Mon Mar 27 09:33:36 CST 2006

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.

"Rakesh Rathod" <RakeshRathod@discussions.microsoft.com> wrote in message
news:A3655B1B-EBCC-4FC6-9A0B-025EF62643C0@microsoft.com...
> 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



Re: Caps Lock Status by RakeshRathod

RakeshRathod
Wed Mar 29 06:34:02 CST 2006

Thanks Paul. I worked using the GetKeyState() method.

Thanks and Regards,
Rakesh

"Paul G. Tobey [eMVP]" wrote:

> 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.
>
> "Rakesh Rathod" <RakeshRathod@discussions.microsoft.com> wrote in message
> news:A3655B1B-EBCC-4FC6-9A0B-025EF62643C0@microsoft.com...
> > 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
>
>
>