1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
void RefreshTaskBar()
{
HWND HandleTaskBar = FindWindow("Shell_TrayWnd", NULL);
if (!HandleTaskBar){}
else
{
HWND HandleTrayNotify = FindWindowEx(HandleTaskBar, NULL, "TrayNotifyWnd", NULL);
HWND HandleSysPager = FindWindowEx(HandleTrayNotify, NULL, "SysPager", NULL); //Uniquement pour les machines XP
if(HandleSysPager)
HandleTrayNotify = HandleSysPager;
if(HandleTrayNotify)
HandleTrayNotify = FindWindowEx(HandleTrayNotify, NULL, "ToolbarWindow32", NULL);
SendMessage(HandleTrayNotify, WM_PAINT, 0, 0);
}
} |