Randy, you can display text in the row header cells. In C#, you would need to do this: this.dataGridView1.Rows[rowIndex].HeaderCell.Value = "text to show in header"; or this.dataGridView1.Rows[rowIndex].HeaderCell.Value = number.ToString();
Hope this is what you need. Thanks, -Regis DataGridView developer
This posting is provided "as-is"
|