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

