[perl-win32-gui-users] Imagelists and Listviews together with THEGUILOFT.

2003-07-23 Thread Magnone, Angelo
Has anyone been able to use Imagelists with Listviews using THE GUI LOFT application? Some code examples using The Gui Loft (as the source for the Listview that uses the Imagelists) would be helpful. Thanks This e-mail may be privileg

RE: [perl-win32-gui-users] How do you deselect all currently sele cted items from a listview?

2003-07-23 Thread Magnone, Angelo
According to the docs that I have read, "ItemCheck" deals with checkboxes. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 1:11 PM To: Magnone, Angelo Cc: 'Jonathan Southwick'; [EMAIL PROTECTED] Sourceforge. Net (E-mail); [EMAIL PROTECT

RE: [perl-win32-gui-users] How do you deselect all currently sele cted items from a listview?

2003-07-23 Thread sam . dela . cruz
Here are two subs I have, Select All and Deselect All #= sub SelectAll_Click #= { my $count = $MainWin->ListView->Count(); foreach my $item (0..$count) { $MainWin->ListView->ItemCheck($item,1); } } #= sub ClearSel

RE: [perl-win32-gui-users] How do you deselect all currently sele cted items from a listview?

2003-07-23 Thread Magnone, Angelo
I believe this will actually "clear" the listview... I just want to "deselect" any "selected/highlighted" items. -Original Message- From: Jonathan Southwick [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 12:01 PM To: [EMAIL PROTECTED] Sourceforge. Net (E-mail) Subject: Re: [perl-

Re: [perl-win32-gui-users] How do you deselect all currently selected items from a listview?

2003-07-23 Thread Jonathan Southwick
Here is how I do it in one of my programs: $MainWindow->Recipients->Clear(); Where Recipients is the name of my listbox. Jonathan Jonathan Southwick [EMAIL PROTECTED] Technical & Network Services Allegheny College Meadville, PA 16335 (814) 332-2755 At 7/22/2003

RE: [perl-win32-gui-users] Need some minor cleanup help and a note on radio buttons

2003-07-23 Thread Cruickshanks, Darin
Dennis, Closing a Window using the little X will fire off an Window_Terminate event where Window is the name of the Window that was closed. Darin Darin Cruickshanks Labs Manager, Computing Service University of Essex [EMAIL PROTECTED] 0120

RE: [perl-win32-gui-users] Need some minor cleanup help and a note on radio buttons

2003-07-23 Thread Dennis Putnam
At 08:21 AM 7/23/2003, you wrote: >This will get rid of the Minimize and Maximize. > SNIP I may have replied a tad too soon. I'm still missing one piece. If I cannot get rid of the close button (X), then I need an OnClick routine. What is the name of the click object for that button? TIA.

RE: [perl-win32-gui-users] Need some minor cleanup help and a note on radio buttons

2003-07-23 Thread Dennis Putnam
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At 08:21 AM 7/23/2003, you wrote: >This will get rid of the Minimize and Maximize. > SNIP Perfect. Thank you much. -BEGIN PGP SIGNATURE- Version: PGPfreeware 6.5.8 for non-commercial use Comment: Be sure to use my mo

RE: [perl-win32-gui-users] Need some minor cleanup help and a note on radio buttons

2003-07-23 Thread work
> I don't think we are talking about the same thing. I want to disable the > standard window controls in the upper right (Minimize, Maximize and > Close) like I can do with VC++. This will get rid of the Minimize and Maximize. $results = new Win32::GUI::DialogBox( -name=> "results

RE: [perl-win32-gui-users] Need some minor cleanup help and a note on radio buttons

2003-07-23 Thread Dennis Putnam
At 03:49 AM 7/23/2003, you wrote: Hey, In response to # 1 (textfield problem), make sure that "$window" is valid. It may be complaining about that, and therefore leading you the wrong way. Secondly, my calls to "Add" are typically: $Textfield = $Window->AddTextfield( -name => "Textfield

RE: [perl-win32-gui-users] Need some minor cleanup help and a note on radio buttons

2003-07-23 Thread Stuart Arnold
Hey, In response to # 1 (textfield problem), make sure that "$window" is valid. It may be complaining about that, and therefore leading you the wrong way. Secondly, my calls to "Add" are typically: $Textfield = $Window->AddTextfield( -name => "Textfield", -left => 10, -top