Re: [perl-win32-gui-users] Final Code: Click on URL in About Window

2001-01-22 Thread christopher sagayam
one more thing I don't know whether it is meant to be or not.. But when I click on the url it goes to the url BUT when I click on any other place in the window too it goes to the url ( incl the OK button too) chris www.perl-resume.com - Original Message - From: Sean Healy <[EMAIL PROT

Re: [perl-win32-gui-users] Progress Bar

2001-01-22 Thread Sam
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 try running progressbar.pl in the samples directory in the win32 distribution. if it goes then use that code, owise ask again, and state that that sample doesn't go, and what errors you got eg a BSOD/critical messagebox etc. > Was hoping someone co

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

2001-01-22 Thread christopher sagayam
Works perfect for me too chris www.perl-resume.com - Original Message - From: Erick J. Bourgeois <[EMAIL PROTECTED]> To: Sent: Tuesday, January 23, 2001 2:14 AM Subject: Re: [perl-win32-gui-users] Resizing > I added the resizable option, however it still does not > work: > > $MainW

Re: [perl-win32-gui-users] Final Code: Click on URL in About Window

2001-01-22 Thread Sean Healy
Here's the code that you all helped me to figure out. You can use this to implement a clickable URL in your About Window, or whereever you like. The code may not be very clean, let me know if you have suggestions to improve this. This example runs as-is. This is great! I've been playing with it

[perl-win32-gui-users] Resizing

2001-01-22 Thread Erick J. Bourgeois
> Maybe, just maybe, this will work. Add the following to your window > declaration: > > -minsize=> [$minwidth,$minheight], > -maxsize=> [$maxwidth,$maxheight], > I'm afraid the -minsize option does not work. $MainWin = new Win32::GUI::Window( -name => "MainWin", -text => "JEB F

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

2001-01-22 Thread Jonathan Southwick
Maybe, just maybe, this will work. Add the following to your window declaration: -minsize=> [$minwidth,$minheight], -maxsize=> [$maxwidth,$maxheight], I know the -minsize works because I use it in one of my programs but never tried the maxsize. - Original Message - From: "Erick J. Bou

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

2001-01-22 Thread Sean Healy
The code you sent works for me. I don't know what's going on. $MainWin = new Win32::GUI::Window( -name => "MainWin", -text => "Main Window", -height => 400, -width=> 450, -left => 200, -top => 100, -font => $Font, -menu => $Menu,

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

2001-01-22 Thread Erick J. Bourgeois
I added the resizable option, however it still does not work: $MainWin = new Win32::GUI::Window( -name => "MainWin", -text => "Main Window", -height => 400, -width=> 450, -left => 200, -top => 100, -font => $Font, -menu => $Menu, -

[perl-win32-gui-users] Progress Bar

2001-01-22 Thread Matt Heffron
Was hoping someone could provide a little guidance on using a progress bar. WIN32-GUI-PPM-5.6, ActiveState Perl dist, WinME. Have been unable to get a progress bar to appear at all. All other objects seem to work OK. Any ideas? Thanks Matt Heffron [EMAIL PROTECTED] _

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

2001-01-22 Thread Sean Healy
How does one prevent a user from resizing a window? The only thing I could think of is testing the window size when they attempt to resize and then stopit from being resized. Is there an easier or more efficient way of doing it? Add this option: -resizable => 0 You can also call it '-sizable'

[perl-win32-gui-users] Resizing

2001-01-22 Thread Erick J. Bourgeois
How does one prevent a user from resizing a window? The only thing I could think of is testing the window size when they attempt to resize and then stopit from being resized. Is there an easier or more efficient way of doing it? erick

Re: [perl-win32-gui-users] Win32::GUI version 0.0.558

2001-01-22 Thread felice . vittoria
Aldo, I noticed that when I do a ppm install --location=http://dada.perl.it/PPM Win32-GUI I will get Win32-GUI version 0.0.502. I don't get Win32-GUI version 0.0.558. Are you not placing this version in your PPM repository? Felice Aldo Calpini <[EMAIL PROTECTED]> on 01/22/2001 11:16:06 AM

[perl-win32-gui-users] Win32::GUI version 0.0.558

2001-01-22 Thread Aldo Calpini
hello perl-win32-gui-users, version 0.0.558 is out! this is primarily a bugfix version, and also please note that I'm not sure how stable it is (read on for more details). bugs fixed: - the infamous memory leak problem is now gone (everybody say: thank you Sam!!! :-) - fixed the -filter option

RE: [perl-win32-gui-users] Interacting with DOS Shell

2001-01-22 Thread ChristianL
Look into the Expect module. (note: I'm not positive it is implemented in the Win32 environment - so forgive me if it is not..) [EMAIL PROTECTED] -Original Message- From: Sean Healy [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2001 7:22 PM To: perl-win32-gui-users@lists.sourceforg