listview

  • Thread starter Thread starter Frank
  • Start date Start date
F

Frank

Hi,
I have a listview (with detaillines), with fullrowselect. I want to prevent
the selection of more than 1 row. Is that possible? With some property of by
capturing some event?
Thanks
Frank
 
Change the MultiSelect property to False in the property window or in code
use this line;

ListView1.MultiSelect = False
 
Thanks Gerry, I knew it should be something like that, but couldn't find the
property (there are so many).
Frank
 
Yep, .NET is huge in more ways than one.

One big help I find is to use the MSDN help for the control you are working
with and then looking at the members section. That lays out all the
properties and methods.



--
Gerry O'Brien [MVP]
Visual Basic .NET(VB.NET)
 
Back
Top