InputPanel in WindowsCE HPC

B

Boris Stoicov

Hi All,

I'm writing application for Windows CE device and I want to show and hide
the keyboard programatically, withoud pressing the device buttons. When I
use the Microsoft.WindowsCE.Forms.InputPanel a NotSupportedException is
thrown.
How can I show and hide the keyboard on the device using managed code if
possible?
Thanks in advance!

Regards,

Boris
 
L

Linus Rörstad

Hi Boris!

Try using this code:

[DllImport("coredll.dll")]
private static extern bool SipShowIM(int dwFlag);

Pass the value 0 to hide the keyboard and 1 to show it.

It is possible that the device don't support this but give it a try.

Regards
Linus Rörstad
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top