After using Win7, I have to say the taskbar is annoying.
Does anyone know a way to disable the Windows 7 taskbar "Always On Top"?
I do not want the "Auto Hide" option as it pops up at undesired times.
Code: Select all
TaskBar = FindWindow_("Shell_TrayWnd",0)
Start = FindWindow_(0,"Start")
If IsWindowVisible_(TaskBar)
ShowWindow_(TaskBar,#SW_HIDE)
ShowWindow_(Start,#SW_HIDE)
Else
ShowWindow_(TaskBar,#SW_SHOW)
ShowWindow_(Start,#SW_SHOW)
EndIf