Hi Mark thanks for the FAQ'sit's great help.
Ihave used you example class TextAndImageColumn.
I seem to be having trouble instantiating the class. My columns and rows have to be created dynamically as they change for different views of the booking system I am writing. So i have to clear the columns and re-create them all the time. I am using something like the code below to create the column and cell objects but when I access the dataGridView1.CurrentCell - i can't se the image property ?
TextAndImageColumn newCol = New TextAndImageColumn();
TextAndImageCell newCell = New TextAndImageCell();
dataGridView1.Columns.Add(newCol);
dataGridView1.Rows.Add(newCell);
Hope you can help - and again thanks very much for the direct help.
btw - seems to have been an odd thing to miss out from dataGridView - Even good old MSFlexGrid could show both!