RE: [perl-win32-gui-users] ListView question: What event should I use when checking an item on a list?

2003-06-12 Thread Joel Ricketts
Stuart Arnold [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 05/16/2003 05:49 PM To: Sam Dela Cruz/SVL/SC/[EMAIL PROTECTED] perl-win32-gui-users@lists.sourceforge.net cc: Subject:RE: [perl-win32-gui-users] ListView question: What event

RE: [perl-win32-gui-users] ListView question: What event should I use when checking an item on a list?

2003-05-24 Thread Stuart Arnold
; [EMAIL PROTECTED] Subject: RE: [perl-win32-gui-users] ListView question: What event should I use when checking an item on a list? I tried _ItemCheck, this worked like a charm! Regards, Sam Dela Cruz Stuart Arnold [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 05/16/2003 05:49 PM

RE: [perl-win32-gui-users] ListView question: What event should I use when checking an item on a list?

2003-05-23 Thread sam . dela . cruz
:RE: [perl-win32-gui-users] ListView question: What event should I use when checking an item on a list? Classification: I gave up on _ItemClick, Just try the _Click like a Listbox does. You don't get anything as part of your call like ItemClick does, you just have to inspect

[perl-win32-gui-users] ListView question: What event should I use when checking an item on a list?

2003-05-16 Thread sam . dela . cruz
Hi All, Another question. There are only three events in the documentation for ListView: 1. ColumnClick 2. ItemClick 3. KeyDown So if I want to capture the moment that a user checks on a list item, what do I use. Nothing seems to fit, I tried ItemClick but this only responds when you

RE: [perl-win32-gui-users] ListView question: What event should I use when checking an item on a list?

2003-05-16 Thread Stuart Arnold
for their options, eg, -checked. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, May 16, 2003 7:33 PM To: perl-win32-gui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] ListView question: What event should I use when

[perl-win32-gui-users] ListView question

2002-06-20 Thread Jonathan Southwick
I know I can select items based on their index with $MainWindow-Listview-Select($index) but how do I unselect it (without clicking on it)? Jonathan