When using the InputPanel in .NET CF, I met strange crash:
private void InitializeComponent()
{
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.inputPanel1 = new Microsoft.WindowsCE.Forms.InputPanel();
//
// inputPanel1
//
this.inputPanel1.Enabled = true;
this.inputPanel1.EnabledChanged += new System.EventHandler
(this.inputPanel1_EnabledChanged);
On the simulation environment, the program crashed in the line
"this.inputPanel1.Enabled = true;". And the message is:
An unhandled exception of type 'System.Exception' occurred in
Microsoft.WindowsCE.Forms.dll
Additional information: Exception
What's the correct way to use InputPanel component?
Thank you in advance,
Wei Xiang
Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
I have this problem because I want to adjust the component size according to
the input area popup.
"Sergey Bogdanov" <sergey....@gmail.com> wrote in message
news:OMfZUA$AFHA...@TK2MSFTNGP10.phx.gbl...
const uint SIPF_OFF = 0x0;
const uint SIPF_ON = 0x1;
[DllImport("coredll.dll")]
private extern static void SipShowIM(uint dwFlag);
"Sergey Bogdanov" <sergey....@gmail.com> wrote in message
news:Ot1QV8F...@TK2MSFTNGP12.phx.gbl...