Hello,
I need to determine the location (RECT) of application windows (aka "buttons") in the system taskbar.
In Windows XP, this was possible by simply obtaining the handle to the "ToolbarWindow3 2" window that represents the taskbar and then using SendMessage to enumerate the taskbar buttons and obtain their RECTs using toolbar "TB_..." window messages. (i.e. TB_GETBUTTON, TB_GETRECT).
...