I saw this in a program by Jonathan Southwick. The program is gatorbase.pl.
He used to have it on a web site, and you could get it by ftp, but I don't
know if it still available. I could send it to you, but I don't know if
that would violate his intellectual property rights -- I haven't seen him
If you name your listview like
#--
$window->AddListView
#--
(
-name => "DataView",
-top=> 160,
-left => 0,
-width => 600,
-height => 200,
-addstyle => WS_CHILD |
WS_VISI
That will work provided you create your ListView with the name "DataView"
#--
$window->AddListView
#--
(
-name => "DataView",
-top=> 160,
-left => 0,
-width => 600,
-height => 200,
-addstyle => WS_CH
@items = $window->DataView->SelectedItems();
then you can do something like
foreach ( @items )
{
# do something with each item
}
Jeff Colwell
No electrons were harmed in making this e-mail message.
-Original Message-
From: Eugeniy Ogloblin [mailto:[EMAIL PROTECTED]
Sent: Monda
To get which items have the box checked you use the method
"ItemCheck(INDEX)" method.
I took your code and added a button to query this.
The button looks like this:
#--
my $fab1 = $Window->AddButton
#--
(
-name => "GetChecks",
-left => 120,
-top
5 matches
Mail list logo