how do you change your systray clock font / blackground colors with MFC program ?
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Id appericate some answer and sample code. HWND hClock=NULL, hTaskbar, hNotify; hTaskbar = FindWindowEx(NULL, NULL, _T("Shell_TrayWnd"), NULL); if (hTaskbar) { hNotify = FindWindowEx(hTaskbar, NULL, _T("TrayNotifyWnd"), NULL); if (hNotify) hClock = FindWindowEx(hNotify, NULL, _T("TrayClockWClass"), NULL); } if (hClock) { ??????? } I need sample code Thank you :D