tags:

views:

41

answers:

4

Basically i am looking for the top half of this.

I am using a listbox for the left side where it says All, Active, Inactive etc. Now i need the right side, what control is that? I need something that will highlight an entire row and allow me to order (ASC and DESC) based on the column i click.

alt text

+1  A: 

Looks like a DataGridView

Lee
After a lot of tweaking i got it to look similar.
acidzombie24
A: 

Sounds like you're looking for the DataGridView control.

msergeant
A: 

The easiest way to get that would be a GridView. I'm fairly sure that you should be able to customize it enough to get it to look similar to the screenshot you provided.

mc2thaH
A: 

DataGridView or ListView (ViewMode = Details).

Philip Wallace