How to handle SIP in PDA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Problem 1: I am getting some error "Error Message: Exception" while disable
the input panel in one form and opening another form.
In case if i enable Controlbox=true then i am not getting this error.

Problem 2: I navigate from one form to second form with key board enabled in
form one. In case i don't have the menu in form two second page input panel
is still getting visible and there is no way of closing it by the user.

problem: I have menu and want to disable input panel rather than
enabling/disable. How can i acheive this.

Thanks for any help on this.
 
1) This is likely fixed by detaching the SIP event handler when the form is
closed
2) Drop the SIP explicitly when form is deactivated or add an empty main
menu control to the second form
3) Do you mean how to avoid showing the SIP control on the toolbar? If menu
is present the SIP control *will* be shown - by design, but you can try
calling (P/Invoke) SHFullScreen with SHFS_HIDESPBUTTON. Keep in mind that
the framework will keep trying to override this, so you will have to call
this function in Activate event handler and Resize event handler.
 
As of the 3 rd point i tried using the API. I am using C# and not able to
find Activate event for the form.I used the gotfocus event but reapprears
unevently.
 
Back
Top