VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

This code hides the start button!!!

Stringer  (11 Submissions)   Miscellaneous   VB 6.0   Unknown Difficulty   Mon 6th October 2003   Mon 8th February 2021

This code hides the start button!!!

API Declarations


Private Declare Function GetWindow Lib "user32" (ByVal hwnd As Long, ByVal wCmd 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 GetClassName Lib "user32" Alias "GetClassNameA" (ByVal hwnd As Long, ByVal lpClassName As String, ByVal nMaxCount As Long) As Long
Private Declare Function ShowWindow Lib "user32" (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
Private Const GW_CHILD = 5
Private Const GW_HWNDNEXT = 2
Private Const SW_HIDE = 0
Private Const SW_SHOW = 5
Private Const GW_HWNDFIRST = 0
Private Const GW_HWNDLAST = 1
Private Const GW_HWNDPREV = 3
Dim fWnd As Long, gWnd As Long, IpClass As String * 250, gClass As Long

'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'
'@@@@@@ BY JOHN STRINGER @@@@@@'
'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'

Rate This code hides the start button!!! (1(1 Vote))
This code hides the start button!!!.bas

This code hides the start button!!! Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters