I'm creating a Visual Basic program in VS2010. I'm using a DataGridView to display a .csv, but I don't want to show the left column, it's ugly.
Is there any form to hide it?
I'm creating a Visual Basic program in VS2010. I'm using a DataGridView to display a .csv, but I don't want to show the left column, it's ugly.
Is there any form to hide it?
Try setting the RowHeadersVisible
property of your DataGridView to False.