S
Steve Murphy
Is there a way to set a selected index for a Listview in a WinForms
application?
Thanks in advance,
Steve Murphy
application?
Thanks in advance,
Steve Murphy
Steve said:Is there a way to set a selected index for a Listview in a WinForms
application?
Thanks in advance,
Steve Murphy
ListView1.Items[<***YourIndex***>].Selected = true;
Brian Brown said:Are you asking about the items collection? If you are you can do something
like:
listView1.Items[1].Selected = true;
If this is not what you are asking about please repost with more specific
details.