24

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?

enter image description here

Dror
  • 2,548
  • 4
  • 33
  • 51
alvr
  • 391
  • 1
  • 3
  • 9

2 Answers2

39

Try setting the RowHeadersVisible property of your DataGridView to False.

THE DOCTOR
  • 4,399
  • 10
  • 43
  • 64
2

Yes you can do it, setting the RowHeadersVisible property of your DataGridView to False

look this

Matt Ke
  • 3,599
  • 12
  • 30
  • 49
Fajarsoft
  • 41
  • 4