On November 2, 1999 Aldo Calpini wrote:

hello all,
this is version 0.0.434 of Win32::GUI.
in this version I've added the functionalities
for ListViews you've been asking for...

------------------------------------------
Aldo, I tried using the -gridlines => 1 property and I still don't see
gridlines in my ListView?  I also don't see full row select when I set
property -fullrowselect => 1.  I added these properties to my DBGRID.pl
application which shows rows and columns of data from a database table. I
hoped to be able to see gridlines separating each table row. I also hoped to
see a row fully selected when I clicked on it. But I still only see the item
highlighted and none of the subitems on a row, which makes it difficult to
tell which item is selected when I use the horizontal scroll bar and
navigate right in the ListView.  Can you help?

>From sample file listview.pl

$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,
);


Reply via email to