Re: [perl-win32-gui-users] Left&Top vs Move

2004-01-01 Thread Erick Bourgeois
On Fri, 02 Jan 2004 05:49:28 +0100, Johan Lindstrom <[EMAIL PROTECTED]> said: > FYI: When setting a Window's Left and Top properties, the values are > relative to any parent Window's interior. With Move that isn't so. > > Four hours later I find that truly annoying. > > We need a Wiki. I will

Re: [perl-win32-gui-users] I'm here

2003-11-19 Thread Erick Bourgeois
On Mon, 17 Nov 2003 11:47:29 +0100, Aldo Calpini <[EMAIL PROTECTED]> said: > regarding the documentation, I appreciate what Erick did, but I found > it a little difficult to work with. I think a wiki (with CGI::Kwiki, > for example) would be a better start. we could also write in POD so > that the

Re: [perl-win32-gui-users] accelerator keys - now working

2003-11-14 Thread Erick Bourgeois
On Fri, 14 Nov 2003 08:53:30 +, "Jeremy White" <[EMAIL PROTECTED]> said: > >>I would be more than willing to bring the files together and serve > >>them up on jeb.ca > > Erick, are you able to generate flat html files which could be included > automatically in new builds? Jeremy, I seems re

Re: [perl-win32-gui-users] accelerator keys - now working

2003-11-13 Thread Erick Bourgeois
ws, and only a subset were implemented in Win32::GUI. > > 3) I'd be willing to incorporate patches into my version, if someone > identifies them, and sends me the patches, they aren't too cumbersome to > apply, and make the merged binary distribution available. > >

Re: [perl-win32-gui-users] accelerator keys - now working

2003-11-07 Thread Erick Bourgeois
On Wed, 05 Nov 2003 23:46:45 -0800, Glenn Linderman <[EMAIL PROTECTED]> said: > Hi, > > It was extremely important for my next project that I have accelerator > keys working in Win32::GUI (or whatever interface I chose to code to). > > As it turns out, there were only a few scattered places to

Re: [perl-win32-gui-users] File Monitoring Script

2003-10-08 Thread Erick Bourgeois
On Wed, 8 Oct 2003 14:13:25 -0500, [EMAIL PROTECTED] said: > I am looking to write a GUI front end to what basically amounts to a "tail > -f", however, I am not sure how to go about doing this. I would like to > use a ListView object to highlight any lines that come through as "Failed", > but i'm

Re: [perl-win32-gui-users] List views...How to?

2003-06-25 Thread Erick Bourgeois
On Wed, 25 Jun 2003 19:13:06 -0500, Steven Swenson <[EMAIL PROTECTED]> said: > I am trying to insert some text into a listview. > > my %item = ( -item=> 0,-text => "$text"); > $listview->InsertItem (\%item); When sending options, you should not use a hash reference. Instead, send the "whole"

[perl-win32-gui-users] The Win32::GUI Documentation Project

2003-06-24 Thread Erick Bourgeois
The Win32::GUI Documentation Project has begun! http://jeb.ca/perl/win32-gui-docs/ I created editable documentation for Aldo's Win32::GUI Perl module. This project is (obviously) in its infancy stage, but has great potential to become very big. It was a good idea, in my opinion, to have one cent

Re: [perl-win32-gui-users] Docs (List of missing desired widgets)

2003-06-18 Thread Erick Bourgeois
On Tue, 17 Jun 2003 23:41:41 +0200, Johan Lindstrom <[EMAIL PROTECTED]> said: > Basically a web site that anyone (yes anyone) can edit and contribute to. > It usually has a very simple markup language. These two things together > makes it something very special. I am in the process of using Web

Re: [perl-win32-gui-users] Win32::GUI::HyperLink ownership

2003-05-10 Thread Erick Bourgeois
On Sat, 10 May 2003 18:03:53 +0200, Johan Lindstrom <[EMAIL PROTECTED]> said: > Does anyone know who wrote Win32::GUI::HyperLink? > > The only mention I found of it on the Net is at: > http://www.jeb.ca/perl/win32_module.htm > > Is it perhaps Erick Bourgeois himself th

Re: [perl-win32-gui-users] cmd window when executing a perl skript

2003-01-07 Thread Erick Bourgeois
Johannes, Try, maybe this: # Create window my $window = new GUI::Window( # __options___ ); # Add some controls to window #Grab DOS window handle my $DOS = Win32::GUI::GetPerlWindow(); # Hide DOS window Win32::GUI::Hide($DOS); # Show window $window->Show(); Win32::GUI::

Re: [perl-win32-gui-users] TreeView - CheckBox

2002-07-25 Thread Erick Bourgeois
> I couldn't find an event that works so I wound up traversing the tree. The > click() event doesn't seem to be sent with a checkbox click in a tree > view. Thats what I had thought, too bad.. > Is that what you mean? Yeah, thats what I meant. If anyone else has any better ideas, please let

[perl-win32-gui-users] TreeView - CheckBox

2002-07-24 Thread Erick Bourgeois
Hi, Anyone have a work around for retrieving the NODE when it's corresponding checkbox has been clicked? Provided, of course, the TreeView was created with -checkbox => 1. Regards, [ erick ]

Re: [perl-win32-gui-users] Progress Bar (HELP !)

2001-07-24 Thread Erick Bourgeois
On Tue, 24 Jul 2001 08:27:17 -0500, [EMAIL PROTECTED] said: | | Does any have the following ... | | Idiots Guide to PERL Progressbars | 3 easy Steps to Progressbars & Perl | Progressbars by example.. | etc, etc, etc, etc, etc, etc, etc, etc, etc, etc, etc, etc, etc, | etc, | etc,

Re: [perl-win32-gui-users] an array of hashes

2001-07-13 Thread Erick Bourgeois
On Mon, 02 Jul 2001 17:13:55 -0700, Jeremy Aiyadurai said: .. ~snip~ | push(@messageInfoList,%messageInfo); # pushing hash into the array. | } Instead of putting the hash into the array, try inserting a reference to it. That is, push(@messageInfoList, \%messageIn

Re: [perl-win32-gui-users] an array of hashes

2001-07-02 Thread Erick Bourgeois
On Mon, 02 Jul 2001 17:13:55 -0700, Jeremy Aiyadurai said: .. ~snip~ | push(@messageInfoList,%messageInfo); # pushing hash into the array. | } Instead of putting the hash into the array, try inserting a reference to it. That is, push(@messageInfoList, \%messageIn

Re: SOLVED Re: [perl-win32-gui-users] Getting Perl.exe - application error

2001-06-26 Thread Erick Bourgeois
On Tue, 26 Jun 2001 08:45:20 -0400, Louis Bohm said: | I found that this line was in error: |$main->AddLabel(-text => "Hello World"); | | I needed to include the -name as shown bellow: |$main->AddLabel( | -name => "Test", | -text => "Hello World", |

Re: [perl-win32-gui-users] Getting Perl.exe - application error

2001-06-26 Thread Erick Bourgeois
On Tue, 26 Jun 2001 08:23:16 -0400, Louis Bohm said: > I am getting perl.exe - Application Error when trying to run the > following > code: > use Win32::GUI; > $main = Win32::GUI::Window->new( >-name => 'Main', >-width => 100, >-he

[perl-win32-gui-users] Perl Code Exchange

2001-06-18 Thread Erick Bourgeois
/upload.cgi If there are any questions or comments, please email me. I hope this will help some people :) regards, erick bourgeois never stop questionning www.jeb.ca

[perl-win32-gui-users] (no subject)

2001-06-18 Thread Erick Bourgeois
/upload.cgi If there are any questions or comments, please email me. I hope this will help some people :) regards, erick bourgeois never stop questionning www.jeb.ca

Re: [perl-win32-gui-users] Systray Clicks Are Called Twice?

2001-06-16 Thread Erick Bourgeois
e for *that*, is located on the Exchange." A brief description can be found here: http://www.jeb.ca/cgi-bin/exchange/display.cgi p.s. I will be adding a search.cgi and upload.cgi, if there is a high demand for it. Please enjoy! regards, erick bourgeois - Original Message - From: Morbus I

Re: [perl-win32-gui-users] Popup window

2001-06-07 Thread Erick Bourgeois
} It would be a great way of gathering all of the code that has been exchanged on this list. I should be done by the end of next week, if any has any questions regarding the idea(or, of course, some input), email me. regards, erick bourgeois never stop questionning www.jeb.ca - Original

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

2001-06-06 Thread Erick Bourgeois
You can find the FAQ here: http://www.jeb.ca/faq/Win32-GUI-FAQ.html regards, erick bourgeois never stop questionning www.jeb.ca - Original Message - From: Kevin Keegan <[EMAIL PROTECTED]> To: Sent: Wednesday, June 06, 2001 6:55 PM Subject: [perl-win32-gui-users] FAQ | I

Re: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-05-31 Thread Erick Bourgeois
| So, I first open a new browser and then click the link - voila. Side topic: hold shift and press the left mouse button on any link and it will open a new browser with that address. regards, erick - Original Message - From: Piske, Harald <[EMAIL PROTECTED]> To: Sent: Thursday, May 31,

Re: [perl-win32-gui-users] New window?

2001-05-24 Thread Erick Bourgeois
Dave, It's probably a good idea to put the $Win->Show(); at the end of the 'stored_Click 'sub, that is, after you added all the controls. And from what I remember, you should only call Win32::GUI::Dialog(); once. regards, erick bourgeois never stop questionning www.jeb.

Re: [perl-win32-gui-users] Using GetOpenFileName

2001-05-06 Thread Erick Bourgeois
Using GetOpenFileName$dir_path = Win32::GUI::BrowseForFolder( -title => "Choose a directory:", ); Piet De Jong wrote: | Hi | I want to be able to show a dialog box with just a directory listing. | Can I pass any parameters to the function GetOpenFileName to only show informat