blumarker 0 Newbie Poster

Hello,
I've been trying for a few days now to apply different icons from an ImageList to a ListView Control. Problem is, Only the first added Icon shows up in the ListView.

HWND hWndListView = CreateWindow(WC_LISTVIEW, 
                                "", 
                                WS_CHILD | LVS_REPORT | LVS_SINGLESEL | WS_BORDER | LVS_SHAREIMAGELISTS, 
                                10, 
                                10, 
                                450, 
                                500, 
                                hwndParent, 
                                (HMENU)IDC_LIST, 
                                GetModuleHandle(NULL), 
                                NULL);
                                
hSmall = ImageList_Create(24, 24, ILC_COLOR32, 0, 5);

index = ImageList_AddIcon(hSmall, LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(IDD_MAIN_ICO_ADD)));
index = ImageList_AddIcon(hSmall, LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(IDD_MAIN_ICO_CLEAN)));
ListView_SetImageList(hWndListView, hSmall, LVSIL_SMALL);

I searched around MSDN and it seemed to me that the logical way to do this would be:

LvItem.mask = LVIF_IMAGE; //In order to allow usage of images.
LvItem.iImage = 1; //index of image to be applied to the LvItem.

Unfortunately it has no effect whatsoever, the ListView doesn't even need the "LvItem.mask = LVIF_IMAGE;" mask applied for the icons to show up.

-Thanks