RE: [perl-win32-gui-users] Absolute newbie Q

2001-09-28 Thread Forhan, Michael
I ran the script on my system , and it worked fine: however, from all I've seen in this group, the problem is most likely that you didn't include a name on your label. That causes a lot of crashes: make a habit of -name'ing everything (even if its -name=>'label001'). Try replacing: $main->AddLabe

RE: [perl-win32-gui-users] open file dialog?

2001-08-27 Thread Forhan, Michael
Yes, there is. Try this Function on for Size: my @File_Filter = ( "Perl Files (*.pl)", "*.pl", "Perl Gui Files (*.plx)", "*.plx", "All Files (*.*)", "*.*" ); my $dir = cwd; my $OPENED_FILE = GUI::GetOpenFileName( -owner => $Window, -directory

RE: [perl-win32-gui-users] interactive help [? ]button

2001-08-06 Thread Forhan, Michael
? ]button I looked up this theard and others in the archives I now know how to hide it , Thanks But my question still remains, how to make it Do something ? JohnR > -----Original Message- > From: Forhan, Michael [mailto:[EMAIL PROTECTED] > Sent: Friday, 3 August 2001 11:55 >

RE: [perl-win32-gui-users] interactive help [? ]button

2001-08-03 Thread Forhan, Michael
The issue of the question button came up some time ago in this group, (I have a post from 5/31/01 in my personal archive), thought it may have been hard to spot from the subject [ Window Size Controls & Miscellany ?'s ] Here it is for your reference: I pulled up Microsoft's website on maximizebo

[perl-win32-gui-users] FW: Win32::GUI Events

2001-07-18 Thread Forhan, Michael
> -Original Message- > From: Forhan, Michael > Sent: Friday, July 13, 2001 1:10 PM > To: 'perl-win32-gui-users@lists.sourceforge.net' > Subject: Win32::GUI Events > > Is there a way to 'intercept' a call to a subroutine, and h

[perl-win32-gui-users] Drop down boxes

2001-07-12 Thread Forhan, Michael
I am having a wierd problem utilizing drop down boxes. Using the following Code: my $DataList = $Window->AddCombobox( -name => 'DataList' ,-width=> 70 ,-height => 100 ,-top

RE: [perl-win32-gui-users] Rebar

2001-06-27 Thread Forhan, Michael
Thank you for sending me the webpage, unfortunately it hasn't been much help to me (I haven't been able to display the bar, or anything on it). I originally was using: http://velocity.activestate.com/code/cpan/w/wi/Win32-GUI.html to look up information for Win32::GUI, but I'm really looking for an

[perl-win32-gui-users] Rebar

2001-06-27 Thread Forhan, Michael
I have been looking for the window elements that are mobile in a window (like the toolbars in IE, and MS Office Products), and have figured from the description that what I want is a 'Rebar'. I've been having a tough time getting this item to work, and was hoping that someone could post an example,

RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak?

2001-06-05 Thread Forhan, Michael
Correct me if I'm wrong, but if you are using Perl 5.005 , then Win32::GUI version 502 (the latest version for perl 5.005) is the version that you will receive on a PPM install, because 558 is for Perl 5.6. I'm a little confused on this myself, because I've seen a couple of statements regarding the

RE: [perl-win32-gui-users] Window Size Controls & Miscellany ?'s

2001-05-31 Thread Forhan, Michael
t; > > >At 03:06 PM 5/31/01, Frazier, Joe Jr wrote: > >At 03:10 PM 5/31/01, Forhan, Michael wrote: > > Hey, thanks to both of you on the min/max|width/height... > worked wonderfully! > > > Morbus Iff > .sig on other machine. > http://www.disobey.co

RE: [perl-win32-gui-users] Window Size Controls & Miscellany ?'s

2001-05-31 Thread Forhan, Michael
While I haven't been able to get rid of the cursor change (into the resize arrow), I've prevented people from resizing the box manually by placing the -maxwidth and -maxheight settings in. Thanks for your tip for -maximize! It works great, here is my window: $Name = new Win32::GUI::Window( -name

[perl-win32-gui-users] Window Size Controls & Miscellany ?'s

2001-05-31 Thread Forhan, Michael
Is there a way to disable the Maximize button on a window? I've been using -maxwidth and -maxheight in the window creation in order to prevent users from resizing my windows (I don't really want to deal with resizing & repositioning quite yet...) but since the maximize button is active, the window

RE: [perl-win32-gui-users] Dropdown Boxes

2001-05-18 Thread Forhan, Michael
] == 6; } Hope that helps. Have fun, Harald | -Original Message- | From: Forhan, Michael [mailto:[EMAIL PROTECTED] | Sent: Friday, May 18, 2001 8:29 | To: 'perl-win32-gui-users@lists.sourceforge.net' | Subject: [perl-win32-gui-users] Dropdown Boxes | | | Hello, | I am curren

[perl-win32-gui-users] Dropdown Boxes

2001-05-18 Thread Forhan, Michael
Hello, I am currently working on a windows input program for an ODBC information prompt, and am having difficulties building a proper 'dropdown' for listing possible DSNs. I have tried using both combo boxes and list boxes, and I am able to scroll through those using the keyboard, but I wou