RE: [perl-win32-gui-users] Alex, Alex Lee has invited you to open a Google mail account

2004-06-24 Thread Mark Sutfin
Alex, Pardon the interruption..are there any beta accounts left? TIA, Mark Sutfin Mgr Operations / Production Support Affinity Group Inc. (303) 728 7474 > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Alex Lee > Sent: Thursday, June 24,

[perl-win32-gui-users] Alex, Alex Lee has invited you to open a Google mail account

2004-06-24 Thread Alex Lee
HI I am sending google gmail to win32 gui post. Thanks for all the help in the past guys. I can send more depending on the reponse. --- Alex Lee has invited you to open a free Google Gmail account. The invitation will expire i

RE: [perl-win32-gui-users] Working with threads

2004-06-24 Thread Eric Hansen
Brad, May a crazed camel jockey hump your ??. It is easier to thread the eye of a needle than it is to discuss threads with regards to Perl Gui. My suggestion to you is to stick to UNIX and AWK programming where you can kick Off multiple processes running concurrently. From: "Brad Smith" <[E

[perl-win32-gui-users] Working with threads

2004-06-24 Thread Blair Sutton
This model works quite well: - use win32::GUI; use threads; use Thread::Queue; # contruct GUI here --> my $commandQueue = Thread::Queue->new; threads->new(sub { while (my $command = $commandQueue->dequeue) { eval $command; warn $@ if $@; } }); Win32::GUI:

Re: [perl-win32-gui-users] Working with threads

2004-06-24 Thread Jez White
Hi, Threading in Perl is arguably the weakest part of the language. I do know of successful implementations of a threaded win32::gui app, where one thread handles GUI interaction, while the other does all the "work". I think if you search the list you might be able to come across a couple of examp