How add imagelist in Infragistics.Win.UltraWinGrid ?
- by Nakul Chaudhary
In past, I am using Listview and using below code can show a particular image for particular memId. But now I need to replace listview with Infragistics.Win.UltraWinGrid
problem arise how i show image for ultragrid.
For Each LItem As ListViewItem In Me.dvParticipants.Items
If CInt(LItem.SubItems(2).Text) = memid Then
LItem.ImageIndex = imageindex
End If
Next
Please suggest.