VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Hide the clock on the taskbar

by Per Andersson (6 Submissions)
Category: Windows System Services
Compatability: Visual Basic 3.0
Difficulty: Intermediate
Date Added: Wed 3rd February 2021
Rating: (6 Votes)

Hide the clock on the taskbar with not much code.

Rate Hide the clock on the taskbar

'Create one form, two buttons and one module
'Put this code in the module
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
Public Declare Function ShowWindow Lib "user32" (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
Public Function HideClock()
Dim FindClass As Long, FindParent As Long, Handle As Long
FindClass& = FindWindow("Shell_TrayWnd", vbNullString)
FindParent& = FindWindowEx(FindClass&, 0, "TrayNotifyWnd", vbNullString)
Handle& = FindWindowEx(FindParent&, 0, "TrayClockWClass", vbNullString)
ShowWindow Handle&, 0
End Function
Public Function ShowClock()
Dim FindClass As Long, FindParent As Long, Handle As Long
FindClass& = FindWindow("Shell_TrayWnd", vbNullString)
FindParent& = FindWindowEx(FindClass&, 0, "TrayNotifyWnd", vbNullString)
Handle& = FindWindowEx(FindParent&, 0, "TrayClockWClass", vbNullString)
ShowWindow Handle&, 1
End Function
'Put his code in the form
Private Sub Command1_Click()
HideClock
End Sub
Private Sub Command2_Click()
ShowClock
End Sub

Download this snippet    Add to My Saved Code

Hide the clock on the taskbar Comments

No comments have been posted about Hide the clock on the taskbar. Why not be the first to post a comment about Hide the clock on the taskbar.

Post your comment

Subject:
Message:
0/1000 characters