|
Subject:
|
Input Panel
|
|
Posted By:
|
matt.fields
|
Post Date:
|
10/22/2003 4:50:07 PM
|
I am trying to use an Input Panel for a Smart Device with VS.Net 2003. When I enable the Input Panel at run time, I get the following Error on my emulator: "A managed Exception occured at Application:Run+0x1a"
The solution compiles and deployes fine.
Any ideas would be great!
Thanks
Matt
|
|
Reply By:
|
dynasign
|
Reply Date:
|
11/12/2003 9:48:24 AM
|
I've the same problem, i don't know what to do.
I am waiting for the answer of this problem.
Harmjan
|
|
Reply By:
|
Imar
|
Reply Date:
|
11/12/2003 9:53:53 AM
|
Did you add the Input Panel on all the forms of your App? Are you trying to enable a SIP from a form that does not have its own SIP?
If that's the case, add a SIP to each of your application's forms. VS.NET just adds the SIP to the very first form, but not to any subsequent form you add.
Cheers,
Imar
--------------------------------------- Imar Spaanjaars Everyone is unique, except for me.
|
|
Reply By:
|
dynasign
|
Reply Date:
|
11/13/2003 9:55:42 AM
|
Add this folowing line and it works:
VB Me.Menu = mainMenu1
C# this.Menu = mainMenu1;
Harmjan
|