Hi, I'm sorry let me clarify my question, I mean, how do I check mark all of the items in a listview?
Regards, Sam Dela Cruz Hi, Is there a way to select all items in a ListView? I tried doing this using this code, but it doesn't work: sub SelectAll_Click { my $count = $MainWin->ListView->Count(); foreach (0..$count) { $MainWin->ListView->ItemCheck($_); } } Regards, Sam Dela Cruz