Hide left column DataGridView

datagridview, vb.net, winforms

Solution

Try setting the `RowHeadersVisible` property of your DataGridView to False.

Problem

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?

Original source