[perl-win32-gui-users] How do I hide the column heading in ListView?

2004-03-11 Thread sam . dela . cruz
Hi All, Can I hide the column heading in ListView? How to do that? Thanks & Regards, Sam Dela Cruz

[perl-win32-gui-users] problem with Win32::GUI::AxWindow when building exe file with Activestate Perlapp

2004-03-01 Thread sam . dela . cruz
Win32::GUI::Dialog(); # Main window event handler sub Window_Terminate { # Release all before destroy window undef $OLEControl; $Control->Release(); return -1; } sub Window_Resize { if (defined $Window) { ($width, $height) = ($Window->GetClientRect)[2..3]; $Control->Resize ($width, $height); } } Regards, Sam Dela Cruz

Re: [perl-win32-gui-users] A guide for adding resources (bitmaps, binary objects and XP manifest) to your exe

2004-02-23 Thread sam . dela . cruz
This worked well with perlapp, thanks very much Jez! Regards, Sam Dela Cruz "Jez White" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 02/23/04 02:38 AM To: "Win32-GUI" cc: (bcc: Sam Dela Cruz/SVL/SC/PHILIPS) Subject:

Re: [perl-win32-gui-users] XP "Look and Feel" - Success.

2004-02-18 Thread sam . dela . cruz
Got it! manifest file works now, thanks. As regards to ResHacker, I really would love a tutorial if you have some time. Thanks. Regards, Sam Dela Cruz "Jez White" <[EMAIL PROTECTED]> 02/18/2004 10:12 AM To: Sam Dela Cruz/SVL/SC/[EMAIL PROTE

Re: [perl-win32-gui-users] XP "Look and Feel" - Success.

2004-02-18 Thread sam . dela . cruz
Hi Jez, Did choice No. 1. I placed the manifest file in the same directory as the resulting exe. Negative results. I tried to use ResHacker but, I think it's complicated. Is there a way to just include the file when perlapp is used? Regards, Sam Dela Cruz "Jez Whit

Re: [perl-win32-gui-users] XP "Look and Feel" - Success.

2004-02-18 Thread sam . dela . cruz
Hi, This looks great. Thanks. I was trying to create an executable using Activestate PDK-perlapp, how do I include this file? Regards, Sam Dela Cruz "Jez White" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 02/04/04 05:17 AM To: "Robert Thor

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

2003-07-23 Thread sam . dela . cruz
sub ClearSelections_Click #= { my $count = $MainWin->ListView->Count(); foreach my $item (0..$count) { $MainWin->ListView->ItemCheck($item,0); } } Regards, Sam Dela Cruz I believe this will actually "clear" the listview... I just

[perl-win32-gui-users] Is there an Event that I can use when a checkbox is checked on a Treeview Node

2003-07-17 Thread sam . dela . cruz
rk on a node, I would like to check everything that is displayed on the listview on the right. Is there a way that I can capture that event? Thanks. Regards, Sam Dela Cruz

Re: [perl-win32-gui-users] extract icons from shell32.dll and use it in image list

2003-06-18 Thread sam . dela . cruz
Win32::GUI::BitmapInline worked really well. Thanks! Regards, Sam Dela Cruz You could try Win32::GUI::BitmapInline, from the docs: This module can be used to "inline" a bitmap file in your script, so that it doesn't need to be accompained by several external files (less hassl

[perl-win32-gui-users] extract icons from shell32.dll and use it in image list

2003-06-18 Thread sam . dela . cruz
namically create the images. Is there any other way of doing this? Or perhaps, it is possible to include the bmp files in the executables using PDK4, PerlApp utility? Thanks and Regards, Sam Dela Cruz

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
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 To: Sam Dela Cruz/SVL/SC/[EMAIL PROTECTED] cc: Subject:RE: [perl-win32-gui

[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
select an item, not when you check an item. Please help. Thanks. Regards, Sam Dela Cruz

RE: [perl-win32-gui-users] select all items in ListView

2003-05-16 Thread sam . dela . cruz
Darrik, That worked very well. Thanks! Regards, Sam Dela Cruz try this: foreach (0..$count) { $MainWin->ListView->ItemCheck($_,1); } :) darrik >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] Behalf Of >

Re: [perl-win32-gui-users] select all items in ListView

2003-05-16 Thread sam . dela . cruz
Hi, I'm sorry let me clarify my question, I mean, how do I check mark all of the items in a listview? Regards, Sam Dela Cruz Hi, Is there a way to select all items in a ListView? I tried doing this using this code, but it doesn't work: sub SelectAll_Click { my $count

[perl-win32-gui-users] select all items in ListView

2003-05-16 Thread sam . dela . cruz
} } Regards, Sam Dela Cruz