RE: [perl-win32-gui-users] Perl as EXE

2002-02-26 Thread Matthew Wagenknecht
Check out either Perl2Exe or ActiveState's Perl Development Kit.. My personal preference is for Activestate's PDK.. ...::: Matt :::... Special thanks go out to my good friends, Sugar and Caffeine.. -Original Message- From: Chirhart, Brian [mailto:[EMAIL PROTECTED] Sent: Tuesday, Feb

[perl-win32-gui-users] Perl as EXE

2002-02-26 Thread Chirhart, Brian
I am very new to the whole Perl world, but I find it really powerful!! I am curious though on whether you can run a Perl app as an EXE so the end user would not need to have Perl installed on their PC. Is this at all possible? Sorry if this question does not specifically apply to Win32-GUI

RE: [perl-win32-gui-users] How I have to separe the Win32::GUI between pm module

2002-02-26 Thread Guillem Cunillera Wefers
> >this seems to be exactly the problem Sean pointed out. if you call the >'initial' function for more than one module (assuming they are all similar), >you're in fact calling Win32::GUI::Dialog more than one time. try removing >the Win32::GUI::Dialog call from your modules and placing it in the ma

RE: [perl-win32-gui-users] How I have to separe the Win32::GUI between pmmodule

2002-02-26 Thread Guillem Cunillera Wefers
Yes, I use also a fully qualified varible names. I have resolve the problem changing return 0 to return -1. I tried before, but with a depending error. If you can send me this module for seeing how you work with modules I will agree you. Guillem Cunillera i Wefers -Mensaje original- De

RE: [perl-win32-gui-users] How I have to separe the Win32::GUI between pm module

2002-02-26 Thread Kevin . ADM-Gibbs
Guillem, I found that things worked best if I fully qualified variable names, eg $module_a::window instead of $window I have a module that I use that I can send you if you want to have a look. Cheers, Kev. |-+> |

RE: [perl-win32-gui-users] How I have to separe the Win32::GUI between pm module

2002-02-26 Thread Guillem Cunillera Wefers
Thank you for your attention, but these 2 possible problems doesn't appear in my program. I think I have a more basic problem. Let me present how I distribute in pseudocode, for a module that can easy be extended to more modules. --- module_a.pm --- # all window de

Re: [perl-win32-gui-users] How I have to separe the Win32::GUI between pm module

2002-02-26 Thread Sean Healy
My question is how is possible, or where can be my error, that I need to press more than one time the window close button for the main window. If there is some example about how to work with diferrent pm modules without any problems, I will agree. I have had this problem in the past, and I have

[perl-win32-gui-users] How I have to separe the Win32::GUI between pm modules

2002-02-26 Thread Guillem Cunillera Wefers
I am doing a program with different perl modules(.pm) where everyone has his own Window and events, and it works fine. There are some events that call to the beggin procedure of another pm and I Include "return 0" after the call. Of course, I put the correct name for each window, such as-nam