SIP not closing, reopens after app closes

J

Jeremy

Hi All,

Using VS 2005 and the original CF 2 (not Service Pack 1, it's got
problems with the SIP icon disappearing) I made a new WM 2003 CF 2
project.

I implemented the Closing and Loading events for the default form and
added this code shown below.

"sip" is the soft input panel control.

I set the Form1.MinimizeBox property to false so the "x" button becomes
a closing "ok" button. When I run the app the keyboard opens
immediately as expected. When I click OK to close the app the keyboard
reopens after the program exits. Can someone else try this and confirm
this problem.




private void Form1_Load(object sender, EventArgs e)
{
this.sip.Enabled = true;
}

private void Form1_Closing(object sender, CancelEventArgs e)
{
this.sip.Enabled = false;
}


Thanks,
Jeremy
 
J

Jeremy

Forgot to mention this only appears to be an issue on real WM 2003
devices. My WM 5 device and the VS 2005 WM 2003 simulator seem to close
the keyboard properly.

Still, I would appreciate if anyone with feedback and test results of
their own can confirm my findings.

Jeremy
 

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