Show/Hide the TaskBar in Windows 95

//To hide the task bar use

ShowWindow(FindWindow

('Shell_TrayWnd',nil), SW_HIDE);

//To show the task bar use

ShowWindow(FindWindow

('Shell_TrayWnd',nil), SW_SHOWNA);