Posted By: GameScore
show taskbar - 04/01/12 10:28
is there a way to set the windows taskbar visible at runtime?
#include <acknex.h>
#include <windows.h>
HWND h = 0;
void exit_event()
{
ShowWindow(h,SW_SHOW);
}
void main()
{
h=FindWindow("Shell_TrayWnd","");
ShowWindow(h,SW_HIDE);
on_exit = exit_event;
}
h=FindWindow("Shell_TrayWnd","");
ShowWindow(h,SW_SHOW); <-- SW_SHOW not hide
on_exit = exit_event;