Re: datagridview cell format
Notice the names you're using: DataGridViewImageColumn and DataGridViewTextBoxColumn. That's a clue that the type applies to the entire column. The DataGridView is basically a visual representation of data that is, or could be, stored in a database. A database will not allow you to store text and images in the same column. You'll need to put the text for each image in an adjacent column.
Re: datagridview cell format
thanks jmcilhinney, for the suggestion.
i have encountered a new problem which is that if the gridveiwimagecolumn did not have an image inserted, it will show an image with a cross in the square box. how can i get rid of that?
???
ocw