If OpenWindow(0,0,0,500,250,"Window",#PB_Window_SystemMenu|#PB_Window_ScreenCentered) ListIconGadget(1,10,10,480,230,"Titel",400,#PB_ListIcon_GridLines|#PB_ListIcon_FullRowSelect) For a=1 To 5 AddGadgetItem(1,-1,"Item "+Str(a),0,0) Next SendMessage_(GadgetID(1),#LVM_SETIMAGELIST,#LVSIL_SMALL,ImageList_Create_(50,1,#ILC_COLORDDB,0,0)) Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow EndIf