XP standard icons

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi, does anyone know if microsoft has any plans to update their standard
icons in XP to more modern, high color ones? The current set has been
around, it seems like since Windows 3.1. I'm talking about the icons you
get if make this call in your app:

::SendMessage(hwndToolBar, TB_LOADIMAGES, IDB_STD_SMALL_COLOR,
reinterpret_cast<LPARAM>(HINST_COMMCTRL));

Thanks.
 
John a écrit :
Hi, does anyone know if microsoft has any plans to update their standard
icons in XP to more modern, high color ones? The current set has been
around, it seems like since Windows 3.1. I'm talking about the icons you
get if make this call in your app:

::SendMessage(hwndToolBar, TB_LOADIMAGES, IDB_STD_SMALL_COLOR,
reinterpret_cast<LPARAM>(HINST_COMMCTRL));

Thanks.

You can use the ImageLists from Shell32.DLL (214-217)
 
Back
Top