swdev
swdev

Reputation: 5147

Can we hide VB.NET first selection column?

I hope I state my problem correctly. Kindly please look at the screenclip below :' enter image description here

I prefer that the first column shown above is not displayed. Is there any design/programmatic way of achieving this?

Thank you!

Edited : Using this link http://www.andreavb.com/forum/viewtopic_7951.html, I am able to remove the triangle from the selection column

Upvotes: 3

Views: 18246

Answers (1)

Brandon Moore
Brandon Moore

Reputation: 8780

This is using a DataGridView I assume? Just use the visible property for the row headers.

dgv.RowHeadersVisible = false;

Alternatively, you can set it to false using the Properties window.

Upvotes: 12

Related Questions