Re: [perl-win32-gui-users] CALL FOR BUGS (was: The status of win32::gui)

2003-04-07 Thread Johan Lindstrom
At 18:36 2003-04-07 +0200, Aldo Calpini wrote: so, if you found any bug, please submit them *now*! This all goes for 0.0.558, some things may be fixed. When using Win32::GUI::DoEvents instead of Win32::GUI::Dialog, pressing a key will result in two characters in an input field (and possibly

Re: [perl-win32-gui-users] Back to my original question......this is created on load of the extension.

2003-04-07 Thread work
> Trying to put an icon in the system tray because when a program runs, > but don't want a GUI window. Here is what I am doing, but missing > something...Does anyone know of a good doc for the Win32-GUI? The docs > provided seem a bit skimpy. > Thanks in advance. > > sub Win_GUI > { > >$SysTr

[perl-win32-gui-users] RE: CALL FOR BUGS (was: The status of win32::gui)

2003-04-07 Thread Garside, Trevor
Aldo, here are a few more things: GetSaveFileName The default behavior for the Windows GetSaveFileName dialog is to not prompt for overwrite. In order to turn it on, a particular flag needs to be set. (I don't have the Windows API reference in front of me, but I believe the constant is '2')

Re: [perl-win32-gui-users] how to display images?

2003-04-07 Thread Laurent ROCHER
how to display images? > From: Magnone, Angelo > > Other than PerlTK are there any perl win32 modules for displaying photo images (bmp/jpg/etc...)? You can see my Win32::GUI::DIBitmap package. With it, you can load several image format (JPEG, PNG, TIFF, TGA, PCX, ...) and easily render

Re: [perl-win32-gui-users] CALL FOR BUGS (was: The status of win32::gui)

2003-04-07 Thread Jeremy White
Aldo, How do you want them submitted - via this list or via sourceforge? Cheers, jez. From: Aldo Calpini <[EMAIL PROTECTED]> Reply-To: Aldo Calpini <[EMAIL PROTECTED]> To: "Garside, Trevor" <[EMAIL PROTECTED]> CC: perl-win32-gui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] CALL

RE: [perl-win32-gui-users] How "reset" a windows ?

2003-04-07 Thread Peter Eisengrein
OK, you'll want to create the button either way and then hide or show it based upon $nbr_imp, something like this: my $Button = $Win_select_srv->AddButton( -text=> $$Win_select_srv_text7_use, -name=> "Button_add_x_imp_select_srv", -left=> 320, -top => 15

[perl-win32-gui-users] CALL FOR BUGS (was: The status of win32::gui)

2003-04-07 Thread Aldo Calpini
Garside, Trevor wrote: > Aldo, that's great news! > > Along those lines, yes, I would love to be able to see the changes you've > been working on for the next release. I will release it on CVS so you can download it before the release. there aren't really big changes, just a huge cleanup and some

Re: [perl-win32-gui-users] How "reset" a windows ?

2003-04-07 Thread NAHUM Marc
I 'va somethink like this : $add_ok=0; if ($nbr_imp<450){$add_ok=1} $Win_select_srv->AddButton( -text=> $$Win_select_srv_text7_use, -name=> "Button_add_x_imp_select_srv", -left=> 320, -top => 155, -width => 115, -height => 2

RE: [perl-win32-gui-users] How "reset" a windows ?

2003-04-07 Thread Peter Eisengrein
It you just want to hide button it is as easy as $Button->Hide(); If this is not what you mean, please ask again and show some code. -Original Message- From: NAHUM Marc [mailto:[EMAIL PROTECTED] Sent: Monday, April 07, 2003 6:31 AM To: perl-win32-gui-users Subject: [perl-win32-gui-users] H

RE: [perl-win32-gui-users] The status of win32::gui

2003-04-07 Thread Garside, Trevor
Aldo, that's great news! Along those lines, yes, I would love to be able to see the changes you've been working on for the next release. And, for fun, here's a list of problems I've found, just in case you don't know about them: - Accelerators just don't work. See my previous email. - In vers

Re: [perl-win32-gui-users] The status of win32::gui

2003-04-07 Thread Aldo Calpini
Jeremy White wrote: > What is the status of win32::gui - is it being actively developed? I emailed > httptech a couple of days ago and just go lots of undeliverable messages. yes, it is being actively developed. I'm currently working on the internals and I expect to have version 1.00 ready for Ea

Re: [perl-win32-gui-users] Back to my original question......this is created on load of the extension.

2003-04-07 Thread MJG
Trying to put an icon in the system tray because when a program runs, but don't want a GUI window. Here is what I am doing, but missing something...Does anyone know of a good doc for the Win32-GUI? The docs provided seem a bit skimpy. Thanks in advance. sub Win_GUI { $SysTrayICON = new Win32

[perl-win32-gui-users] how to display images?

2003-04-07 Thread Magnone, Angelo
Other than PerlTK are there any perl win32 modules for displaying photo images (bmp/jpg/etc...)? This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distributi

RE: [perl-win32-gui-users] useWin32() -vs- use Win32, I'll byte!

2003-04-07 Thread Garside, Trevor
>From the perl manual (perldoc -f use): If you do not want to call the package's "import" method (for instance, to stop your namespace from being altered), explicitly supply the empty list: use Module (); Trevor S Garside [EMAIL PROTECTED] -Original Message- From: Stuart

[perl-win32-gui-users] How "reset" a windows ?

2003-04-07 Thread NAHUM Marc
Hello, I have a GUI windows and I want "reset" it , or "rebuilt" it I hide some button when a value change thanks for help,