Advertisement
2002VB Windows API Call/ Explanation #18319

How to hide the Windows95-Startbar

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

AI

ملخص الذكاء الاصطناعي: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

كود المصدر
original-source
'this is for the form; ->
Private Sub Command1_Click()
  hwnd1 = FindWindow("Shell_traywnd", "")
  Call SetWindowPos(hwnd1, 0, 0, 0, 0, 0, &H80)
End Sub
Private Sub Command2_Click()
  hwnd1 = FindWindow("Shell_traywnd", "")
  Call SetWindowPos(hwnd1, 0, 0, 0, 0, 0, &H40)
End Sub
التعليقات الأصلية (3)
مسترجع من Wayback Machine