Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

OFF2000: How to Programmatically Hide and Unhide the Windows Taskbar


View products that this article applies to.

Summary

By using API calls in Visual Basic for Applications, you can programmatically hide the Microsoft Windows 95/98 or Microsoft Windows NT 4.0 taskbar. This article shows you how to create the two functions that you need to hide and unhide the taskbar.

↑ Back to the top


More information

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. To create the functions and to see how they work, follow these steps:
  1. Press ALT+F11 to start the Visual Basic Editor. Type the following code in a new module:
    Option Compare Database
    Option Explicit
    
    Dim handleW1 As Long
    
    Private Declare Function FindWindowA Lib "user32" _
       (ByVal lpClassName As String, _
       ByVal lpWindowName As String) As Long
    
    Private Declare Function SetWindowPos Lib "user32" _
       (ByVal handleW1 As Long, _
       ByVal handleW1InsertWhere As Long, ByVal w As Long, _
       ByVal x As Long, ByVal y As Long, ByVal z As Long, _
       ByVal wFlags As Long) As Long
    
    Const TOGGLE_HIDEWINDOW = &H80
    Const TOGGLE_UNHIDEWINDOW = &H40
    
    Function HideTaskbar()
       handleW1 = FindWindowA("Shell_traywnd", "")
       Call SetWindowPos(handleW1, 0, 0, 0, 0, 0, TOGGLE_HIDEWINDOW)
    End Function
    
    Function UnhideTaskbar()
       Call SetWindowPos(handleW1, 0, 0, 0, 0, 0, TOGGLE_UNHIDEWINDOW)
    End Function
    					

  2. On the View menu, click Immediate Window, type the following command and then press ENTER:
    ?HideTaskBar()
    Note that the taskbar is no longer visible.
  3. To restore the taskbar, type the following command in the Immediate Window, and then press ENTER:
    ?UnHideTaskBar()
    Note that the taskbar is now visible.

↑ Back to the top


References

For additional information about getting help with Visual Basic for Applications, click the article number below to view the article in the Microsoft Knowledge Base:
226118 OFF2000: Programming Resources for Visual Basic for Applications

↑ Back to the top


Keywords: KB202099, kbinfo

↑ Back to the top

Article Info
Article ID : 202099
Revision : 5
Created on : 6/23/2005
Published on : 6/23/2005
Exists online : False
Views : 337