AD
Administrator
Syncfusion Team
February 9, 2005 07:24 PM UTC
The DataTable in your DataSet needs to have a ImageIndex column (exact this name, same case).
The ImageIndex then gives an index in the ImageList you assign to GridListControl, e.g.
ImageList imageList = new ImageList();
imageList.Images.Add(SystemIcons.Warning.ToBitmap());
...
ListBox1.ImageList = imageList;
Stefan