views:

245

answers:

1

hi, i was wondering if when using the datagridview control you can remove the thing that looks like a column before the 1st column. I think its used to select rows but not sure what its called. there is an image of what i am talking about here...

http://rapidshare.com/files/274669676/dgv.png.html

Thanks!

+1  A: 

Here is a solution for standard windows controls in c#.

You can use property RowHeaderVisible and set it to false. Or if you want to make row header smaller you can use propery RowHeadersWitdth.

I hope this helps you.

buda