SIP InputControl

N

Nathan Franklin

Hey Guys,

I have a wierd problem while using the SIP.

I load a form which contains an InputControl. After I have finished with
that form I dispose it and all the objects on the form. I then Load another
form with another InputControl on it, When I press the button to bring the
keyboard up, the EnabledChanged Event fires on the form I disposed?!?! I
have no idea why.

Just couldsome please point me in the right direction. Thanks

Nathan
 
T

tomj

I think it is VS2005 Form Designer bug.
It should generate some extra code to
InitializeComponent function.

private System.ComponentModel.IContainer components = null;

private void InitializeComponent()
{
...
this.inputPanel1 = new Microsoft.WindowsCE.Forms.InputPanel();
this.components.Add(this.inputPanel1); // !!! this code is missing
...
}
 

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