ImageList icons not showing up in color
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
The code I'm using to set the image list and load the bitmap resource is as follows: m_CImageList.Create(20,20,ILC_COLOR,2,10); HBITMAP hBitmap = LoadBitmap(_Module.GetResourceInstance(),MAKEINTRESOURCE(IDB_CLOSEDFOLDER)); m_icons[0] = m_CImageList.Add(hBitmap,(HBITMAP)0); I've tried ILC_COLOR32, and all the other ILC_ variations, and the icon comes out grey instead of color as it should. -Jack Mott jackm@scalablesoftware.com