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
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