RE: [perl-win32-gui-users] The rebar control

2004-01-13 Thread Frazier, Joe Jr
This is SOOO cool: #!perl -w use Win32::GUI; use strict; use warnings; my $W = new GUI::Window( -title=> "Win32::GUI::Rebar test", -left => 100, -top => 100, -width=> 300, -height => 200, -name => "Window", -events =>{ Terminate => sub

RE: [perl-win32-gui-users] The rebar control

2004-01-13 Thread Peter Eisengrein
Jez, you're almost there!!! Change these lines: $rebar->InsertBand (-text => 'one' , -image => 0); $rebar->InsertBand (-text => 'two' , -image => 1); $rebar->InsertBand (-text => 'thee', -image => 2); to $rebar->InsertBand (-text => 'one' , -image => $IMG_ONE); $rebar->InsertBand (-text =>

Re: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Glenn Linderman
On approximately 1/13/2004 3:05 PM, came the following characters from the keyboard of Steve Pick: Before you build a new PPM, let me fix all the broken and/or horrible example code :) I don't know where half of the examples in the current PPM came from, but a lot of them don't work and I'm i

Re: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Steve Pick
Before you build a new PPM, let me fix all the broken and/or horrible example code :) I don't know where half of the examples in the current PPM came from, but a lot of them don't work and I'm in the process of fixing them. Steve - Original Message - From: Laurent ROCHER To: p

Re: [perl-win32-gui-users] Updated sourceforge tracker

2004-01-13 Thread Glenn Linderman
On approximately 1/13/2004 12:14 PM, came the following characters from the keyboard of Jez White: Hi, I've updated the bug/feature request tracker at: http://sourceforge.net/tracker/?group_id=16572 I've also added the bug about the broken menu tell tales. I would encourage you all to add

[perl-win32-gui-users] The rebar control

2004-01-13 Thread Jez White
Hi, I've just spent some time getting to grips with the rebar control - and I didn't get very far:) I must be missing something simple, because I can't work out how to use this control. I've gone through the perl/XS code and MS docs and I'm still clueless. The example below (when run in the s

RE: [perl-win32-gui-users] Updated sourceforge tracker

2004-01-13 Thread Frazier, Joe Jr
One more note. I am still using .665. About to upgrade. Joe Frazier, Jr. Technical Support Engineer Peopleclick Service Support Tel: +1-800-841-2365 E-Mail: mailto:[EMAIL PROTECTED] -Original Message- From: Frazier, Joe Jr Sent: Tuesday, January 13, 2004 3:39 PM To: Jez White; Win3

Re: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Laurent ROCHER
Hi all, It's probably not a problem to made new PPM more regular from CVS source code for people don't want/can build it. But, it's more developpement PPM than new WIn32-GUI release. We need a new place for put it. I think to a specific donwload group on sourceforge (a package name

RE: [perl-win32-gui-users] Updated sourceforge tracker

2004-01-13 Thread Frazier, Joe Jr
H.. This : use Win32::GUI; use Win32::API; my $Window = new Win32::GUI::Window ( -name => "Window", -topmost => 1, -left => 300, -dialogui => 1, -top => 400, -width => 222, -addstyle => WS_VSCROLL, -height => 100, -text => "Test", -events => { Terminate => sub { print "Dyi

[perl-win32-gui-users] Updated sourceforge tracker

2004-01-13 Thread Jez White
Hi, I've updated the bug/feature request tracker at: http://sourceforge.net/tracker/?group_id=16572 I've also added the bug about the broken menu tell tales. I would encourage you all to add your bugs and feature requests to the tracker! cheers, jez. == Adding Scrol

Re: [perl-win32-gui-users] problems with running the Makefile

2004-01-13 Thread Laurent ROCHER
Hi, It's look like a problem for find default libc function. It's strange. Theoricly, ActivePerl use Visual C++ 6 msvcrt.lib. Are you using ActivePerl distribution with visual C++ 6 ? Look in your makefile, and search for LIBC entry, you must have : LIBC = msvcrt.lib If OK,

[perl-win32-gui-users] CVS commit

2004-01-13 Thread Steve Pick
Hi, In this update: - GUI.xs : Made ProgressBar aware of -foreground and -background colour settings Example: my $progressbar = new Win32::GUI::ProgressBar($mainwindow, -name => "PB1", -left => 0, -top => 0, -width => 100, -height => 20, -foreground => [255,0,0], # Red.

Re: [perl-win32-gui-users] Win32-GUI current development

2004-01-13 Thread Jez White
Hi Chris, > 1. Is it just me or have the tell-tales from the Menu's stopped working. > I've noticed this on most of my machines. When using 'MakeMenu' and adding > the '&' as in: " > E&xit " would then underline the ALT accelerator > key. Has anybody still got this working in the current buil

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Frazier, Joe Jr
> -Original Message- > From: Stephen Pick [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 13, 2004 11:17 AM > To: Frazier, Joe Jr; perl-win32-gui-users@lists.sourceforge.net > Subject: RE: [perl-win32-gui-users] Intermediate release of Win32::GUI > > > Hi again, > > > Cool, that works

Re: [perl-win32-gui-users] windows xp problems

2004-01-13 Thread Jez White
Hi, What version did you install? For what it's worth, I'm on XP and once you are up and running, Win32::GUI works fine. Cheers, jez. - Original Message - From: "Sirisha Gollapudi" <[EMAIL PROTECTED]> To: Sent: Tuesday, January 13, 2004 4:12 PM Subject: [perl-win32-gui-users] windows

Re: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Jez White
> Use $progressbar->Change( -foreground => [$r,$g,$b], -background => [$r2,$g2,$b2] ) to change the colour, adding SetColor methods would probably mean doing things I don't really feel comfortable with, like rebuilding Makefile.pl and stuff. I'm not sure of the commands to do that, so I'm not going

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Stephen Pick
Hi again, > Cool, that works for me. Can these be passed in the > constructor method, or not yet? Yes, of course :) -foreground and -background are supposedly common options, but the progressbar was not aware of them. I stress that it's not in 665-Fix yet, but will be in a few hours. > One fu

[perl-win32-gui-users] windows xp problems

2004-01-13 Thread Sirisha Gollapudi
Hi all, I am new to Win32::GUI, and recently installed it using PPM. The installation went fine - no error messages or anything, but when I try and run the example Hello World program in the How-To section I get the standard windows error dialgue box for when things go belly up: "Perl Command

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Frazier, Joe Jr
> -Original Message- > From: Stephen Pick [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 13, 2004 10:21 AM > To: Jez White; perl-win32-gui-users@lists.sourceforge.net > Subject: RE: [perl-win32-gui-users] Intermediate release of Win32::GUI > Use $progressbar->Change( -foreground =>

[perl-win32-gui-users] Win32-GUI current development

2004-01-13 Thread Chris Wearn
Hi All, Using 5.8 and 670... 1. Is it just me or have the tell-tales from the Menu's stopped working. I've noticed this on most of my machines. When using 'MakeMenu' and adding the '&' as in: " > E&xit " would then underline the ALT accelerator key. Has anybody still got this working in

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Stephen Pick
> Thanks for the updating of the progress bars arguments. Are you > going to create the methods too?:) I'm going to have to find a > place where I can use this functionality now...:) Use $progressbar->Change( -foreground => [$r,$g,$b], -background => [$r2,$g2,$b2] ) to change the colour, adding S

Re: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Jez White
Hi Joe, Arh documentation don't you just love it:) I agree with everything you said. One thing I would add is a set of improved examples - which should be easy enough to create - I'm sure many of us have lots of useful test scripts. Perhaps it is time for formal documentation standards? I can't

Re: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Jez White
Hi Steve, Thanks for the updating of the progress bars arguments. Are you going to create the methods too?:) I'm going to have to find a place where I can use this functionality now...:) You are right that the project should be driven by people working on active projects and with all the chang

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Frazier, Joe Jr
Ditto to many of Jez's comments. I would be personally very much love to have a monthly build make it to PPM form. To my understanding, there is really not that much to making a PPM file once the build is put together, so why not. However, one of the biggest concerns is not with the coding a

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Stephen Pick
Hi Jez, I agree with most of your points about what goes into the project, but I feel that we're in the best position (as people working on active projects) to know what needs to be added. To make you extremely happy the commit i'll do thisevening will make progress bars take account of -for

Re: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Jez White
All, There have been quite a few additions to the 665-fix build - so perhaps a new build is warranted? How would people feel if there are regular new builds - say once a month (during active development)? [Laurent, I apologise for a suggestion that would give you more work!]. I've been thinki

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Stephen Pick
Hi, I believe that the 670 version has some old hooks code in it, this version is available as a ppm on sourceforge. The latest CVS from the 665 branch is the one you want for best functionality. What errors do you get on compile, and what compiler are you using? Steve -Original Messa

[perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Levin
Laurent, If corrections have enabled to put hooks, it's the good reason to make new PPM release of the module ;) Have you such plan? I had failure of all attempts when compiled a package with corrections from CVS Repository :(