How can I make the taskbar invisible?

Is there any way to make the Windows taskbar invisible?

#461788

if you checked close enough here.. there is a recent post on transbar and tclock.. both can make your taksbar invisible

#461806

windowfx

#461810

if you use ObjectBar or ObjectDock, they have an option to hide the taskbar completely.

#461814

Thanks everyone!

#461819

IsWindowVisible() == TRUE ? ShowWindow(FALSE);

#484764

Ok, if I understood well: (based on code by SoftAka)

// C
ShowWindow (FindWindow ('Shell_TrayWnd', NULL), SW_HIDE);

// VB
ShowWindow FindWindow ("Shell_TrayWnd", 0), 0

// Delphi
ShowWindow (FindWindow ('Shell_TrayWnd', nil), SW_HIDE);

But I don't understand why SoftAka publishes code, I think MacOS9fan just wants an app like transbar or tclock? :)

#484777