News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Re: Memory Status Toy, Memstat.exe

Started by TimoVJL, June 30, 2019, 08:52:45 AM

Previous topic - Next topic

TimoVJL

Refresh Tray Window at exit
HWND hWndTray = FindWindow(TEXT("Shell_TrayWnd"), NULL);
hWndTray = GetWindow(hWndTray, GW_CHILD); //notification area
PostMessage(hWndTray, WM_PAINT , 0, 0);
May the source be with you