for example if I want to make certain column header hidden in Datagridview. I'll use this code:
dataGridView1.ColumnHeadersVisible = false;
But this will make all the column header to be invisible. Now what if I want only certain column header to be hidden.
For instance I have 3 column header. I just want the 3rd column header to be invisible without hidden all the rows data belongs to that column. Is that possible?
Please advise and correct me if I'm wrong.