Hide or disable the Windows’ application bar

Hide or disable the Windows’ application bar

The Windows’ application bar (or Startbar) is a window like any other window in the system, so you can hide/show and enable/disable it. The only thing you need to know is that that the class name of the Start bar window is “Shell_TrayWnd” and that its window name is a null string. Here is the code that lets you do the trick:

Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal _    lpClassName As String, ByVal lpWindowName As String) As LongPrivate Declare Function ShowWindow Lib "user32" (ByVal hwnd As Long, _    ByVal nCmdShow As Long) As LongPrivate Declare Function EnableWindow Lib "user32" (ByVal hwnd As Long, _    ByVal fEnable As Long) As LongPrivate Const SW_HIDE = 0Private Const SW_SHOW = 5Sub ShowStartBar(ByVal bVisible As Boolean)    Dim hWnd_StartBar As Long    hWnd_StartBar = FindWindow("Shell_TrayWnd", "")    If bVisible Then        ShowWindow hWnd_StartBar, SW_SHOW    Else        ShowWindow hWnd_StartBar, SW_HIDE    End IfEnd SubSub EnableStartBar(ByVal bEnable As Boolean)    Dim hWnd_StartBar As Long    hWnd_StartBar = FindWindow("Shell_TrayWnd", "")    If bEnable Then        EnableWindow hWnd_StartBar, True    Else        EnableWindow hWnd_StartBar, False    End IfEnd Sub

If you like concise code you can rewrite the above procedures as follows:

Sub ShowStartBar(ByVal bVisible As Boolean)    ShowWindow FindWindow("Shell_TrayWnd", ""), IIf(bVisible, SW_SHOW, SW_HIDE)End SubSub EnableStartBar(ByVal bEnable As Boolean)    EnableWindow FindWindow("Shell_TrayWnd", ""), bEnableEnd Sub

Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as