Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
On today, of all days, here's some help waking up...Your monitor at least!
Nov 28, 2011 at 4:14 PMYou are not supposed to perform WM_SYSCOMMANDs by posting a message to HWND_BROADCAST, see Fumbling around in the dark and stumbling across the wrong solution. You should send the message to a single HWND that you own or call DefWindowProc directly...
Windows 7 Taskbar Integration for MFC Applications
Feb 27, 2011 at 10:24 AM@Joseph Hatfield: Yes, setting WINVER target can break down-level platforms since it changes struct sizes etc, so if you do sizeof(structvarname) in your code, it will break. You could maybe try to #include the COM headers with a different WINVER. Or be careful and only use the size constants like NOTIFYICONDATA_V1_SIZE.
Too bad MS did not opt for a min and max version solution when they moved to the NTDDI defines.