VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

How to hide the Windows95-Startbar

gunti  (6 Submissions)   Windows API Call/Explanation   Visual Basic 3.0   Intermediate   Wed 3rd February 2021

This shows an easy way, how to hide window's 95/98 Startbar.

API Declarations
'copy this in a module:
Dim hwnd1 As Long
Declare Function SetWindowPos Lib "user32" _
(ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As _
Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags _
As Long) As Long
Declare Function FindWindow Lib "user32" _
Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName _
As String) As Long

Rate How to hide the Windows95-Startbar (4(4 Vote))
How to hide the Windows95-Startbar.bas

How to hide the Windows95-Startbar Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters