bring up the input panel

  • Thread starter Thread starter jayderk
  • Start date Start date
J

jayderk

Is there a way to bring up the input panel on windows CE 4.x using the Smart
Device Framework 1.2?

I looked but could not find.

regards,
Jay
 
Hi jayderk

You need insert a InputPanel control in the form and then in event you want
say: SipPanel.Enabled = true, to hide SipPanel.Enabled = false

Best Regards

RA
 
And you have a main menu or not? You have included the SIP components in
your OS and they work manually?

Paul T.
 
dang... just tested it and it seems to work.... hmmmmm...

so I am guessing the only change I have to make for Pocket PC is add a menu
then
 
jayderk said:
Is there a way to bring up the input panel on windows CE 4.x using the Smart
Device Framework 1.2?

I looked but could not find.

regards,
Jay

I think you mean SIP Keyboard. This is what we use for out 4.2 device:

[DllImport("coredll.dll")]
private static extern bool SipShowIM(SIPStatus i);

[DllImport("coredll.dll")]
private static extern bool SipGetInfo(ref SIPINFO sipInfo);

[DllImport("coredll.dll")]
private static extern bool SipSetInfo(ref SIPINFO sipInfo);

private enum SIPStatus
{
SIPF_OFF = 0,
SIPF_ON
}

private enum SIPFlags
{
SIPF_DOCKED = 0,
SIPF_LOCKED,
SIPF_OFF,
SIPF_ON
}

private struct SIPINFO
{
public int cbSize;
public int fdwFlags;
public RECT rcVisibleDesktop;
public RECT rcSipRect;
public int dwImDataSize;
public int pvImData;
}
 
Back
Top