hide sip options

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

Guest

i am developing a sales force automation app, in which sales rep is not
allowed to do anything, ie pocket pc is locked to the running app.

my problem:
1-users can exit to windows from the options menu beside the sip button
Q: how do i disable it "ALTHOUGH I NEED A MENU & SIP"

any work around or suggestion is appreciated
 
You can hide the standard sip button by P/Invoking SHFullscreen API
function. You can then raise and lower the SIP through code using the
InputPanel control.

Peter
 
i done this and it is working.

now the problem that occured is:
-my main menu has submenus, whenever a submenu appears and loses focus...the
SIP appears again.
-also when transiting from form to form the SIP becomes visible.

any suggestions?
 
System always tries to restore taskbar/start button that is why the
single call of SHFullScreen is not enough. You should call it every time
on Activate event for your forms.

Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
 
Back
Top