How add imagelist in Infragistics.Win.UltraWinGrid ?
Posted
by Nakul Chaudhary
on Stack Overflow
See other posts from Stack Overflow
or by Nakul Chaudhary
Published on 2010-03-23T13:00:33Z
Indexed on
2010/03/23
13:03 UTC
Read the original article
Hit count: 876
infragistics
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.
© Stack Overflow or respective owner