Private Declare Function ShowWindow Lib "user32" (ByVal hWnd As Long, ByVal nCmdShow As Long) As Long
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Const SW_HIDE = 0
Private Const SW_SHOW = 5
Private Sub Command1_Click()
h = FindWindow("Shell_TrayWnd", vbNullString)
ShowWindow h, SW_HIDE
End Sub
Private Sub Command2_Click()
h = FindWindow("Shell_TrayWnd", vbNullString)
ShowWindow h, SW_SHOW
End Sub
bueno esta es una idea de como esconder la barra de tareas hay modifiquenlo a su gusto
