DataGridViewCell format
C#
3
Posts
2
Posters
0
Views
1
Watching
-
Hi I have one column which contains numeric data. If data is 0 I would like to display ''. How can I do that? Set any format? thanks for help Ela
-
maybe you can use a filter; xDataSet.xtable.DefaultView.RowFilter =" xcolumn LIKE '% 0 %' "; dataGridView1.DataSource = DataSet.xtable.DefaultView ; with this only the cells with a 0 are displayed