I'm shure I have seen a few people ask for this before on other forums so, O thought I would post this here.

Description: Its a make-shift design to push the Start button:

Creator: Ryan Jones (Sciguyryan, Me)

code:

VB Code:
  1. Private Declare Sub keybd_event Lib "user32.dll" ( _
  2.     ByVal bVk As Byte, _
  3.     ByVal bScan As Byte, _
  4.     ByVal dwFlags As Long, _
  5.     ByVal dwExtraInfo As Long)
  6. Public Const KEYEVENTF_KEYUP = &H2
  7. Public Const VK_LWIN = &H5B

And then as the call do the following:

VB Code:
  1. keybd_event VK_LWIN, 0, 0, 0
  2. keybd_event VK_LWIN, 0, KEYEVENTF_KEYUP, 0

Cheers and hope that helps someone, simple I know...

Cheers,

RyanJ