Shows the desktop on computers on which that feature has been disabled by an administrator.
Shows the desktop on computers on which that feature has been disabled by an administrator.
API Declarations
Public Declare Function ShowWindow Lib "user32" (ByVal hWnd As Long, ByVal nCmdShow As Long) As Long
Rate Shows the desktop on computers on which that feature has been disabled by an administrator.
(1(1 Vote))
Dim hWnd As Long
hWnd = FindWindowEx(0&, 0&, "Progman", vbNullString)
ShowWindow hWnd, 5
End Sub
Private Sub CmdDeskhide_Click()
Dim hWnd As Long
hWnd = FindWindowEx(0&, 0&, "Progman", vbNullString)
ShowWindow hWnd, 0
End Sub
Shows the desktop on computers on which that feature has been disabled by an administrator. Comments
No comments yet — be the first to post one!
Post a Comment