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

2001-08-29 Thread Peter Eisengrein
Each time an item is selected, it will run sub ListView_ItemClick What you probably want is to keep an array of the items (filenames) that are selected and then if/when a button (which isn't in your code) is _Click 'd then do a foreach on your list and move each file then undef the list. > -O

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

2001-08-29 Thread Joseph_Vieira
Hello, I do get items in a list view that are checked to put in an array/hash/what ever. My code list the contents of a directory and puts them in a list view what I want is that after someone selects the files they want by checking the box next to it. They click on a button and it copies the se