tags:

views:

337

answers:

2

Is it possible to edit the text in a listview sub-item column in a report view? In other words integrate a combo box or a textbox to facilitate input

A: 

In order to allow this you need to set

yourListView.LabelEdit = true;

This defaults to false so you need to explicitly turn it on to allow users to edit the labels.

Andrew Hare
+2  A: 

Maybe this could be of interest?

http://www.codeproject.com/KB/list/extendedlistviews.aspx

danbystrom