Data Grid View Row Header
-
Yes. Take a look at the DataGridView documentation - it is really quite easy once you get the idea that the header cell is similar to other cells in the datagridview. Suppose you wanted to set the text for row 0's row header... you could do this: dataGridView1.Rows[0].HeaderCell.Value = "Some String"; Good Luck!
It isn't enough to do well in life. One must do good when and where one can. Otherwise, what's the point?
-
Yes. Take a look at the DataGridView documentation - it is really quite easy once you get the idea that the header cell is similar to other cells in the datagridview. Suppose you wanted to set the text for row 0's row header... you could do this: dataGridView1.Rows[0].HeaderCell.Value = "Some String"; Good Luck!
It isn't enough to do well in life. One must do good when and where one can. Otherwise, what's the point?