Search code examples
windows-ce

WinCE 6.0 - How to show/hide programmatically the input panel?


I have a MFC application (dialog-based) running on a device with win ce 6.0 (ARMV41). Do you know the API function(s) to show / hide the Software Input Panel ?

Thanks !


Solution

  • Use the SipShowIM API. There's an example in MSDN here, but essentially, to show it, it looks like this:

    SipShowIM(SIPF_ON);
    

    And to hide it looks like this:

    SipShowIM(SIPF_OFF);