Is there a way to make a listitem or subitem in a listview uneditable?
:confused:
Printable View
Is there a way to make a listitem or subitem in a listview uneditable?
:confused:
Set the LabelEdit property to lvwManual
:)
That worked thanks!
:)
Just as an FYI...if you want to allow the editing of certain items, keep the LabelEdit on lvwAutomatic and in the BeforeLabelEdit event, set Cancel equal to True if you don't want to allow editing.
:)