VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Hide And show Start Button

by PulseWave (25 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 4.0 (32-bit)
Difficulty: Unknown Difficulty
Originally Published: Wed 24th February 1999
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Hide And show Start Button

Rate Hide And show Start Button



'This Function Hides the Start Button'
OurParent& = FindWindow("Shell_TrayWnd", "")
OurHandle& = FindWindowEx(OurParent&, 0, "Button", vbNullString)
ShowWindow OurHandle&, 0
End Function

Function showStartButton()
'This Function Shows the Start Button'
OurParent& = FindWindow("Shell_TrayWnd", "")
OurHandle& = FindWindowEx(OurParent&, 0, "Button", vbNullString)
ShowWindow OurHandle&, 5
End Function


Download this snippet    Add to My Saved Code

Hide And show Start Button Comments

No comments have been posted about Hide And show Start Button. Why not be the first to post a comment about Hide And show Start Button.

Post your comment

Subject:
Message:
0/1000 characters