InputPanel in WindowsCE HPC

  • Thread starter Thread starter Boris Stoicov
  • Start date Start date
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
 
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
 
Back
Top