Aivan Monceller
Aivan Monceller

Reputation: 4670

Remove columns in gridview

How do you remove this:

alt text

Upvotes: 1

Views: 159

Answers (1)

Michael Todd
Michael Todd

Reputation: 17051

If that is a Windows Forms DataGridView in .Net, then you can hide that column by setting RowHeadersVisible to false, either in the Properties window or at runtime.

Upvotes: 2

Related Questions