[perl-win32-gui-users] damn!

2002-02-20 Thread Aldo Calpini
hello people! I'm really sorry about my unforgivable absence of the last months :-( just yesterday I discovered that I was kicked off this mailing list, due to message bouncing, due to my broken email configuration. I'm going through all kind of problems lately, last but not least the one with DN

Re: [perl-win32-gui-users] damn!

2002-02-20 Thread paul . barker
Hi Aldo Nice to hear from you again - sorry to hear about your problems :( I can produce a PPM if you let me know when the source is available. Cheers Paul "Aldo Calpini" <[EMAIL PROTECTED]> on 20/02/2002 09:12:36 To: "Perl-Win32-GUI-Users" cc:(bcc: Paul BARKER/IT/HTLUK) bcc: Pa

[perl-win32-gui-users] question

2002-02-20 Thread Christian Koul
Hello, Need help for this configuration (perl -v) This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered patch, see perl -V for more detail) Copyright 1987-2001, Larry Wall Binary build 631 provided by ActiveState Tool Corp. http://www. Built 17:16:22 Jan 2 2002 Wh

Re: [perl-win32-gui-users] ListView Checkboxes, ImageList, etc.

2002-02-20 Thread Sean Healy
I looked up some information on the LVM_SETITEMSTATE message (I've reproduced it below). The only problem is that it wants a pointer, and when I've tried to pass pointers to SendMessage before, it doesn't work. I pack the structure, then pack a pointer to it (I've tried using both 'p' and 'P'

Re: [perl-win32-gui-users] question

2002-02-20 Thread Sean Healy
When i write D:\PERL\WIN32\SAMPLES>perl hello.pl Can't load 'D:/Perl/site/lib/auto/Win32/GUI/GUI.dll' for module Win32::GUI: load_file:Le module spÚcifiÚ est introuvable at D:/Perl/lib/DynaLoader.pm line 206. Compilation failed in require at hello.pl line 9. BEGIN failed--compilation aborted

[perl-win32-gui-users] How to fix an image to a window ?

2002-02-20 Thread Guillem Cunillera Wefers
Hi, I'm doing a graphical inside a window, but when I move the window out the borders or when I put another window over the first, the image is cutted. I attach the module and I am sure that there is an easy solution. Thanks, package Mailtool::calculc; use Mailtool::msg; use Mailtool::acceswe

RE: [perl-win32-gui-users] damn!

2002-02-20 Thread Frazier, Joe Jr
> -Original Message- > From: Aldo Calpini [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 20, 2002 4:13 AM > To: Perl-Win32-GUI-Users > Subject: [perl-win32-gui-users] damn! > > > hello people! > > I'm really sorry about my unforgivable absence of the last months :-( > just yester

Re: [perl-win32-gui-users] How to fix an image to a window ?

2002-02-20 Thread Johan Lindstrom
At 19:36 2002-02-20 +0100, Guillem Cunillera Wefers wrote: Hi, I'm doing a graphical inside a window, but when I move the window out the borders or when I put another window over the first, the image is cutted. I attach the module and I am sure that there is an easy solution. I gather you are

[perl-win32-gui-users] ListView Checkboxes Initial State Workaround

2002-02-20 Thread Eric Hansen
Since it does not appear that the checkbox initial state can be conventionally changed, how about an unconventional approach to the problem??? How about drawing yourself 2 bitmaps. One that looks like a checked checkbox and one that looks like an unchecked checkbox. Then, define your ListView

[perl-win32-gui-users] ListView Checkboxes Workaround

2002-02-20 Thread Eric Hansen
BELOW CODE MIGHT BE USED TO SIMULATE LISTVIEW CHECKBOXES BY TOGGLING DISPLAYED IMAGES IN AN IMAGE LIST. YOU CAN SUBSTITUTE THE Bitmap filenames TO THOSE YOU HAVE ON HAND. use Win32::GUI; $W = new Win32::GUI::DialogBox( -name => "Window", -text => "ListView Checkboxes Workaround",

[perl-win32-gui-users] multiline menu items

2002-02-20 Thread Glenn Linderman
Hi, I have an application where I'd like to have a multi-line menu item. I've seen that in programs, where the first line of the menu item has text in the normal position, and the subsequent line(s) are further indented, and when your mouse approaches/leaves the first or last line, all of them ch

[perl-win32-gui-users] Re: Listview Checkboxes

2002-02-20 Thread Paul Cooke
This is how I got it to work: use Win32::API 0.20; my $SendMsg = new Win32::API("user32", "SendMessage", "NNNP", "N"); use constant LVIF_STATE => 0x8; use constant LVM_SETITEMSTATE => 0x102B; use constant LVIS_STATEIMAGEMASK => 0xF000; my $LV = $Window->AddListView( -name =>