The following is a piece of code from the listview.pl sample file that came
with Win32-GUI 425. I ran the listview.pl sample program, but do not see
full row select, nor do I see gridlines, nor do I see checkboxes, and I
don't know what hottracking is? Are these properties I've mentioned not
programmed yet, or has anyone seen them work?
Regards,
Eric Hansen
$Window->AddListView(
-name => "ListView",
-text => "hello world!",
-left => 10,
-top => 10,
-width => 280,
-height => 180,
-imagelist => $IL,
-style => WS_CHILD | WS_VISIBLE | 1,
-fullrowselect => 1,
-gridlines => 1,
-checkboxes => 1,
-hottrack => 1,
);