dataGridView
-
Hello everybody. In my C# project I use dataGridView. How can I set a row headers text? Thanks in advance.
-
Hello everybody. In my C# project I use dataGridView. How can I set a row headers text? Thanks in advance.
-
if you have made a proper tables style then for every column there is a property Header text other wise the name of column will appear as header for your view
Yes I know how to set column Headers text. But propertie RowHeadersVisible for my dataGridView is set to true. And I want to set for all rows header text.Is this possible?
-
Yes I know how to set column Headers text. But propertie RowHeadersVisible for my dataGridView is set to true. And I want to set for all rows header text.Is this possible?
-
Hello everybody. In my C# project I use dataGridView. How can I set a row headers text? Thanks in advance.
Hi. The most easiest way to do it is the following. dataGridView1.Rows[0].HeaderCell.Value = "Something"; where dataGridView1 refers to the data grid name, and '0' refers to the first row. (the index). ENJOY!!!:) Keshav Kamat Siemens India