Enable SIP without having a mainmenu or taskbar

  • Thread starter Thread starter Gogo
  • Start date Start date
G

Gogo

Hi @ all,

after reading a lot of stuff, I couldn't find a solution.

I have an application, written in VB.NET, which needs to run in kiosk mode
without any tasbar, main menu or something else. As it is an application,
where data has to be entered, I really need a small keyboard, which could be
activated if needed.

Does anybody know how to split the SIP from being dependent on a
menu/taskbar? Does anybody know another possible solution like a
keyboard-control?

Thanks in advance for your help,

Bastian
 
I also ve the same question and ve search through the net but to no avail. Anyone can help? Thanks
 
After I sent my post, I read yours ;)

Here is, what gives me a SIP without any mainmenu or taskbar:

-----

//C#
using System.Runtime.InteropServices;

const uint SIPF_OFF = 0x0;
const uint SIPF_ON = 0x1;

[DllImport("coredll.dll")]
private extern static void SipShowIM(uint dwFlag);

'VB
Imports System.Runtime.InteropServices

Const SIPF_OFF As Integer = &H0
Const SIPF_ON As Integer = &H1

<DllImport("coredll.dll")> _
Private Shared Function SipShowIM(ByVal dwFlag As Integer) As Integer
End Function

-----

Now, it shouldn't be a problem, to use this piece of code with your status
bar ... or am I wrong? If you want, I can send a more developed version in
VB.NET, which gives the possibility to move the SIP and which has a kind of
toggle function.

Gogo



angka said:
I also ve the same question and ve search through the net but to no avail.
Anyone can help? Thanks
 
Thanks alot. However when i added the code the InputPanel didn't show. Do I need to add anything else??? Thanks
 
Back
Top