Click here to Skip to main content
15,904,500 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi frens, how can i remove the arrow head column which is used to select a column in C#. this is possible in asp.net but how can i do the same in C#
please help with the code
with regards bishnu
Posted
Comments
LanFanNinja 29-Nov-11 22:26pm    
Check solution below.

1 solution

Set the RowHeadersVisible property to false. i.e.
C#
dataGridView1.RowHeadersVisible = false;

Or you can also do this in the designer of course.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900