RE: [perl-win32-gui-users] Win32::GUI help

2004-01-07 Thread Farrington, Ryan
] On Behalf Of Johan Lindstrom Sent: Wednesday, January 07, 2004 11:13 AM To: perl-win32-gui-users@lists.sourceforge.net Subject: RE: [perl-win32-gui-users] Win32::GUI help At 15:17 2004-01-07, Farrington, Ryan wrote: >Here ya go: All the use's were done to allow for perl2exe to compile i

RE: [perl-win32-gui-users] Win32::GUI help

2004-01-07 Thread Farrington, Ryan
e a play. Have you had any issues rolling out your exe across different versions of windows? Do you build the child with perl2exe before shipping it out? Thanks, jez. >From: "Farrington, Ryan" <[EMAIL PROTECTED]> >CC: "'perl-win32-gui-users@lists.sourceforge.net'

RE: [perl-win32-gui-users] Win32::GUI help

2004-01-07 Thread Farrington, Ryan
Here ya go: All the use's were done to allow for perl2exe to compile it into an application. The code is really really sloppy. =( Also I used guiloft to create the win32::Gui stuff... Way easier.. I would highly recommend it! =-) ---CODE--- #!e:\perl\bin\perl #this is the parent s

RE: [perl-win32-gui-users] Win32::GUI help

2004-01-07 Thread Farrington, Ryan
eers, jez. >From: "Farrington, Ryan" <[EMAIL PROTECTED]> >To: "'#SHUCHI MITTAL#'" <[EMAIL PROTECTED]>, >perl-win32-gui-users@lists.sourceforge.net >Subject: RE: [perl-win32-gui-users] Win32::GUI help >Date: Wed, 7 Jan 2004 07:43:35 -0600

RE: [perl-win32-gui-users] Win32::GUI help

2004-01-07 Thread Farrington, Ryan
I think I did kind of the same thing you are looking at. What I had to do was create a child process to handle all my requests. Take a look at Win32::ProcFarm to create and talk with your children processes while having your parent process deal with the interface. Give that a shot =-) I will try to

RE: [perl-win32-gui-users] System Administrator

2002-06-10 Thread FARRINGTON, RYAN
Here is your solution Win32::PerfLib I've used it in the past and it works great for the applications I'm using it in -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, June 09, 2002 11:32 AM To: perl-win32-gui-users@lists.sourceforge.net Subject: [pe

[perl-win32-gui-users] Everyone's work

2002-06-04 Thread FARRINGTON, RYAN
I'm extremely interested to see what everyone has come up with... Does anyone know a site that would be suitable for uploading our "working" Win32::Gui applications for everyone to see... I have something simple but I think people supporting a Win32 environment would think it useful as a tool =)

RE: [perl-win32-gui-users] RichEdit update

2002-05-30 Thread FARRINGTON, RYAN
if I'm reading this correctly you are wanting to replace everything in the Richedit box with your new $text? the easiest way I found was to just use $MainWindow->Results()->Text($text); if I am incorrect in my assumption please let me know so the new sub would be sub UpdateResults { my

RE: [perl-win32-gui-users] eek! =)

2002-05-28 Thread FARRINGTON, RYAN
= $interface->get_retval; my $msg = ""; foreach my $line (@return_value){ $msg = $msg . $line; } $win->reFileSelected()->Text($msg); return(1); } -Original Message- From: FARRINGTON, RYAN [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 28, 2002 8:48 AM To: 'p

[perl-win32-gui-users] eek! =)

2002-05-28 Thread FARRINGTON, RYAN
Using Win32::GUI and I'm having a problem with the program reporting to windows that it is not responding. I know that it is because of the loop I have the program in but I still want the user to work while I'm processing in the background. I found a reference to $win->DoEvents() but as far as I ca