hi Marcel,
This can be done using the FetchCellStyle method. Example for Column(0)...
C1Combo1.Splits(0).DisplayColumns(0).FetchStyle = True
Private
Sub C1Combo1_FetchCellStyle(ByVal sender As System.Object, ByVal e As C1.Win.C1List.FetchCellStyleEventArgs) Handles C1Combo1.FetchCellStyle
If e.Col = 0 Then
e.CellStyle.ForeGroundPicturePosition = C1.Win.C1List.ForeGroundPicturePositionEnum.LeftOfText
e.CellStyle.ForegroundImage = imgs.Images(e.Row)
End If
End Sub
Here, imgs is an ImageList filled with the images.
Regards,
Greg L