views:

180

answers:

1
+1  Q: 

listview in C#

hi,

I am using the listview with C# in VS.NET 2003. I would like to select a single cell (not just cells in the first column). I want to have a cell free selection and it highlight the selection in the cell as well.

+3  A: 

For free selection, I expect (in 1.1) DataGrid is your best option. In 2.0, this is largely replaced with DataGridView, which is much more versatile.

I would also recommend that you consider moving to a more up to data framework version; I realise this isn't always possible, but you will be hamstrung with 1.1.

Marc Gravell