RE: [perl-win32-gui-users] List View-getting multiple selection i ndexes

2002-04-24 Thread JColwell
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

RE: [perl-win32-gui-users] List View-getting multiple selection i ndexes

2002-04-23 Thread JColwell
If you name your listview like #-- $window->AddListView #-- ( -name => "DataView", -top=> 160, -left => 0, -width => 600, -height => 200, -addstyle => WS_CHILD | WS_VISI

RE: [perl-win32-gui-users] ListView - selected Items

2002-02-25 Thread JColwell
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

[perl-win32-gui-users] ListView - selected Items

2002-02-25 Thread JColwell
@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

RE: [perl-win32-gui-users] How to get items that are checked in a list view.

2001-08-31 Thread JColwell
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