VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Hides the start menu button.

Bird  (7 Submissions)   Windows API Call/Explanation   VB 6.0   Unknown Difficulty   Fri 13th June 2003   Mon 8th February 2021

Hides the start menu button.

API Declarations


Const SWP_SHOWWINDOW = &H40
Const GW_CHILD = 5
Const GW_HWNDNEXT = 2
Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Declare Function GetWindow Lib "user32" (ByVal hwnd As Long, ByVal wCmd As Long) As Long
Private Declare Function GetClassName Lib "user32" Alias "GetClassNameA" (ByVal hwnd As Long, ByVal lpClassName As String, ByVal nMaxCount As Long) As Long
Dim tWnd As Long, bWnd As Long, sSave As String * 250

Rate Hides the start menu button. (1(1 Vote))
Hides the start menu button..bas

Hides the start menu button. Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters