Re: perl2exe

2012-04-18 Thread David Christensen
On 04/18/2012 07:49 PM, Somu wrote: Is there a way to convert perl code into executables? Cava Packager is one option: http://www.cava.co.uk/ I've played with it on Linux, and it worked. HTH, David -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-m

RE: perl2exe

2012-04-18 Thread Jack Maney
l.com] Sent: Wednesday, April 18, 2012 9:49 PM To: beginners@perl.org Subject: perl2exe Just wondering Where am i going to use all the programs i'm writing? Only on my own system?? Hi all! Is there a way to convert perl code into executables? Otherwise, I'll have to tell my friends

perl2exe

2012-04-18 Thread Somu
Just wondering Where am i going to use all the programs i'm writing? Only on my own system?? Hi all! Is there a way to convert perl code into executables? Otherwise, I'll have to tell my friends to install the whole of perl language to see my work. I remember there was a perl2exe ea

perl2exe and DBI, DBD::Oracle modules

2009-03-10 Thread Sarsamkar, Paryushan
Hi All, I have one perl script which connects to oracle db and run some queries and get the job done. The initial code is as followed - --code--- #!/usr/bin/perl use strict; use warnings; use DBI; use DBD::Oracle; --code--- Then I have used perl2exe to generate a file so as to

Re: perl2exe

2008-07-24 Thread epanda
What is the version I need for perl2exe which is compatible with 5.10 ? I don't understand why perl2exe of 2001 is not compatible because only modules change in perl 5.0 to 5.10. So I don't understand and I know that lastest version of perl2exe is not free and I can't buy it. I

RE: perl2exe

2008-07-24 Thread Stewart Anderson
> -Original Message- > From: Rob Dixon [mailto:[EMAIL PROTECTED] > Sent: 23 July 2008 21:10 > To: beginners@perl.org > Cc: epanda > Subject: Re: perl2exe > > > epanda wrote: > > > > I am using perl2exe (Oct 27, 2001) and it works fine for littl

Re: perl2exe

2008-07-23 Thread Rob Dixon
epanda wrote: > > I am using perl2exe (Oct 27, 2001) and it works fine for little script > without several .pm and it does good binary conversion. > I am working without any install of perl8.8 or 10. > > Now I want to include Win32::process which includes others > dependen

perl2exe

2008-07-23 Thread epanda
Hello I am using perl2exe (Oct 27, 2001) and it works fine for little script without several .pm and it does good binary conversion. I am working without any install of perl8.8 or 10. Now I want to include Win32::process which includes others dependencies and I would like to know if I can

perl2exe error dbi connect failed !

2005-11-17 Thread sunita
hi friends, i have written a perl script which is using oracle DBI and DBD . the script is running fine. but when i converted it to exe using perl2exe it does not run if perl is not there on the system. if perl , dbi and dbd present then it runs well. the error shown by the exe is as

RE: Perl2exe

2004-05-20 Thread Toby Stuart
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, May 21, 2004 2:57 AM > To: [EMAIL PROTECTED] > Subject: Re: Perl2exe > > > In article > <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] (Manish U) writes: > >Hi

Use PAR instead. RE: Perl2exe

2004-05-20 Thread McMahon, Chris
-Original Message- From: Manish U [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 11:11 PM To: Beginners Subject: Perl2exe Hi, Can any one give me the url where i can get a free version of perl2exe. Regards Manish U ### PAR is on CPAN. The

Re: Perl2exe

2004-05-20 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Manish U) writes: >Hi, > >Can any one give me the url where i can get a free version of perl2exe. Consider this instead: http://search.cpan.org/~autrijus/PAR-0.80/lib/PAR.pm -- Peter Scott http://www.perldebugged.com/ *

RE: Perl2exe (U)

2004-05-20 Thread Meidling, Keith, CTR, ISD
To: SAR, JAVEED (STSD) Cc: Manish U; Beginners Subject: RE: Perl2exe Precisely, I have even bought 'perl2exe' from indigostar. But we had such a headache creating exes of some heavy files ( mostly those that required XML::Parser or JABBER modules ) that we would give up and ship

RE: Perl2exe

2004-05-20 Thread SAR, JAVEED (STSD)
sh U; Beginners Subject: RE: Perl2exe Precisely, I have even bought 'perl2exe' from indigostar. But we had such a headache creating exes of some heavy files ( mostly those that required XML::Parser or JABBER modules ) that we would give up and ship the source. Thanks Ram ( BTW do U wor

RE: Perl2exe

2004-05-20 Thread Ramprasad A Padmanabhan
Precisely, I have even bought 'perl2exe' from indigostar. But we had such a headache creating exes of some heavy files ( mostly those that required XML::Parser or JABBER modules ) that we would give up and ship the source. Thanks Ram ( BTW do U work for indigostar ? ) On Thu, 200

RE: Perl2exe

2004-05-19 Thread SAR, JAVEED (STSD)
Have a look at this site www.indigostar.com Regards javeed ** There's no place like ~/ *** -Original Message- From: Ramprasad A Padmanabhan [mailto:[EMAIL PROTECTED] Sent: Thursday, May 20, 2004 12:13 PM To: Manish U Cc: Beginners Subject: Re: Perl2exe

Re: Perl2exe

2004-05-19 Thread Ramprasad A Padmanabhan
n any one give me the url where i can get a free version of perl2exe. > > Regards > Manish U > > Disclaimer Statement: > > --

Perl2exe

2004-05-19 Thread Manish U
Hi, Can any one give me the url where i can get a free version of perl2exe. Regards Manish U Disclaimer Statement: -- The information contained

Re: Executing Perl from inside Perl, using Perl2EXE, Win32 and etc...

2003-09-09 Thread sc00170
4 total scripts, and I am calling 3 of them from the main > one... > Most of the time, the scripts are executed from a machine that DOES NOT have > Perl installed, so I have created EXE files out of my Perl with > "perl2exe"... > > I tried to call one "Perl.exe"

RE: Executing Perl from inside Perl, using Perl2EXE, Win32 and etc...

2003-09-09 Thread Paul Kraus
, using Perl2EXE, Win32 and etc... I have an interesting situation where I am using Perl to develop installation scripts. So far, so good. However, I have 4 total scripts, and I am calling 3 of them from the main one... Most of the time, the scripts are executed from a machine that DOES NOT have

Executing Perl from inside Perl, using Perl2EXE, Win32 and etc...

2003-09-09 Thread David Mamanakis
EXE files out of my Perl with "perl2exe"... I tried to call one "Perl.exe" from the other that is already running... it errors and will not run... I was wondering if I need to just run the .pl file from the main one, since "Perl" was already running via the executio

Re: perl2exe to run in multiple env

2003-08-27 Thread zsdc
PANNEER SELVAN wrote: Is there a way to convert the perl program to exe which run boths in > windows as well as unix? The short answer is: No. using perl2exe i could able to create the exe in one env.. but the problem > is same exe does not work in other env... I want one exe which wo

Re: perl2exe to run in multiple env

2003-08-27 Thread Randal L. Schwartz
>>>>> "Panneer" == Panneer Selvan <[EMAIL PROTECTED]> writes: Panneer> Is there a way to convert the perl program to exe which run Panneer> boths in windows as well as unix? using perl2exe i could Panneer> able to create the exe in one env.. but the probl

perl2exe to run in multiple env

2003-08-27 Thread PANNEER SELVAN
Hi all Is there a way to convert the perl program to exe which run boths in windows as well as unix? using perl2exe i could able to create the exe in one env.. but the problem is same exe does not work in other env... I want one exe which works in both unix as well as windows.. Is it possible

RE: perl2exe

2002-08-14 Thread Najamuddin, Junaid
: Tuesday, August 13, 2002 9:57 AM To: [EMAIL PROTECTED] Subject: perl2exe Hi, I am try to create a .exe with perl2exe on a Win32 platform and keep getting the BSOD or freeze ups. I been to indigostar's site to try to dig up a troubleshooting page, but no luck. Has anyone else had problems

perl2exe

2002-08-13 Thread Scott Barnett
Hi, I am try to create a .exe with perl2exe on a Win32 platform and keep getting the BSOD or freeze ups. I been to indigostar's site to try to dig up a troubleshooting page, but no luck. Has anyone else had problems with perl2exe. Thanks, Scott Barnett Home Care Medical - Technical Su

Re: Perl2exe

2002-06-03 Thread Jenda Krynicky
D::Oracle.pm you'll see that the module uses Win32::TieRegistry and only if that one is not found and it doesn't succeed to open the HKLM\Software\Oracle does it try Tie::Registry instead. perl2exe cannot know that so it warns you that it was not able to find a module that might b

RE: Perl2exe

2002-05-30 Thread Najamuddin, Junaid
EMAIL PROTECTED]' Subject: RE: Perl2exe > -Original Message- > From: Shishir K. Singh [mailto:[EMAIL PROTECTED]] > > > There's perl2app that comes bundled with the Perl Dev Kit on > Active State. Unfortunately, the whole package comes with a > price. Other t

RE: Perl2exe

2002-05-30 Thread Shishir K. Singh
I was having similar problems with perl2exe sometime back. As far as your problem is concerned, I am not sure what module is being used. You seem to have mentioned something about TieRegistry which is under Win32. Wont' that warrant doing a "use Win32::TieRegistry" instead of t

RE: Perl2exe

2002-05-30 Thread Jackson, Harry
are any other > perl exe conversion pgm. I might have known it. I have managed to get it working but am not really that happy with it. Does anyone know what kind of work is involved in writing something like perl2exe. I imagine it is well beyond my abilities but it would be interesting

RE: Perl2exe

2002-05-30 Thread Shishir K. Singh
Sent: Thursday, May 30, 2002 7:49 AM To: '[EMAIL PROTECTED]' Subject: Perl2exe I am trying to compile a script to an executable in Win NT and getting the following. Converting 'Search_Remedy.pl' to Search_Remedy.exe Warning: Can't locate Tie/Registry.pm at C:\Perl\site\lib\D

Perl2exe

2002-05-30 Thread Jackson, Harry
at including "use lib" would sort out any dependencies. use lib; use Carp::Heavy; use DBD::Oracle; use Harry::Connect; Is there a viable alternative to perl2exe on the market or is it the only one out there at the moment Harry **

Re: PERL2EXE || PERL2BIN

2002-03-01 Thread Jenda Krynicky
From: Roman Fordinal <[EMAIL PROTECTED]> > why i can compile PERL script under Linux to binnary? I think you meant "HOW" :-) I believe there is a Linux version of PerlApp from ActiveState See http://www.ActiveState.com , look for Perl Development Kit. You might also try perl

PERL2EXE || PERL2BIN

2002-03-01 Thread Roman Fordinal
why i can compile PERL script under Linux to binnary? : :.. Roman Fordinal :.: [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: perl2exe

2002-02-27 Thread Garyl Erickson
icon for them to click on. Garyl Erickson Craig Williams wrote: > > Does anyone know - will perl2exe (or a different package to create an > .exe) allow >a perl script to be launched from windows explorer EVEN > THOUGH the script is written for unix (and is sitting on a unix >

Re: perl2exe

2002-02-27 Thread Matthew Peter Lyon
yes I believe you should have cygwin installed anyway... :) mL - Original Message - From: "Agustin Rivera" <[EMAIL PROTECTED]> To: "Craig Williams" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, February 27, 2002 12:44 PM Subject: Re: p

Re: perl2exe

2002-02-27 Thread Agustin Rivera
Wednesday, February 27, 2002 12:02 PM Subject: perl2exe > Does anyone know - will perl2exe (or a different package to create an ..exe) > allow a perl script to be launched from windows explorer EVEN THOUGH the > script is written for unix (and is sitting on a unix netowrk drive)? > &

Re: perl2exe

2002-02-27 Thread Jenda Krynicky
From: Craig Williams <[EMAIL PROTECTED]> > Does anyone know - will perl2exe (or a different package to create an .exe) > allow a perl script to be launched from windows explorer EVEN THOUGH the > script is written for unix (and is sitting on a unix netowrk drive)

perl2exe

2002-02-27 Thread Craig Williams
Does anyone know - will perl2exe (or a different package to create an .exe) allow a perl script to be launched from windows explorer EVEN THOUGH the script is written for unix (and is sitting on a unix netowrk drive)? I have many perl scripts my users would find useful but all written to run on

RE: perl2exe

2002-02-06 Thread Jenda Krynicky
bout 3 years ago). You were only left with the delay. Guess what I did ;-) (No, I was not using Perl2exe for profit at that time and I do not do that now. Take this as a quiz only.) Jenda === [EMAIL PROTECTED] == http://Jenda.Krynicky.cz == There is a reason for living.

RE: perl2exe

2002-02-05 Thread Timothy Johnson
I think you are only supposed to get the nag message until you register, but yeah, it's still there. -Original Message- From: Gary Hawkins To: Eric Wang; [EMAIL PROTECTED] Sent: 2/5/02 8:28 PM Subject: RE: perl2exe "Perl Dev Kit's key new features include:

RE: perl2exe

2002-02-05 Thread Gary Hawkins
Press1012886123.ht ml Tell me, does perl2exe still have that nag message? Gary > -Original Message- > From: Eric Wang [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 05, 2002 4:35 PM > To: [EMAIL PROTECTED] > Subject: perl2exe > > > Hi guys, >

Re: perl2exe

2002-02-05 Thread kim, kiseok
http://www.activestate.com/Products/Perl_Dev_Kit/ You would use PerlApp Program. Read the Page. good luck "Eric Wang" <[EMAIL PROTECTED]> wrote in message 000501c1aea6$3a5f41d0$83a7c880@inustry">news:000501c1aea6$3a5f41d0$83a7c880@inustry... | Hi guys, | I Haven't written in this forum in so lo

perl2exe

2002-02-05 Thread Eric Wang
Hi guys, I Haven't written in this forum in so long. =) Just wondering if there are any other software out there that can make my perlscript independent of the Perl interpreter. Thanks Eric

Perl2Exe (or Compiled Perl) and Shipping Runnable Source

2002-01-07 Thread Morbus Iff
Hey all, To summarize, my impresssion of people's hatred of Perl2Exe or generically, compiled ("hidden source") perl is: - it hides the source from the user. this goes against Perl, and you really should be using another language if you want to be such a Nazi. I tot

Re: perl2exe

2001-06-03 Thread Will W
s channel about perl2exe. I feel obligated to throw in what I know. I'm a little upset by this as this is my first post to the list, and I would much prefer to sit back and see how the list functions before I speak up. But serious disinformation needs to be countered if this list is to serve its p

Re: perl2exe

2001-06-03 Thread Jody Lowes
[EMAIL PROTECTED]> writes: > > Jody> On Sunday 03 June 2001 10:26, you wrote: > >> And "perl2exe" isn't. It's an installer maker, not a compiler. > > Jody> I haven't installed it yet but this is from the readme file: > > So let's l

Re: perl2exe

2001-06-03 Thread Jody Lowes
> And "perl2exe" isn't. It's an installer maker, not a compiler. I haven't installed it yet but this is from the readme file: # Copied from pxman.html About This Program Perl2Exe is a command line utility for converting Perl scripts to executable files. Thi

Re: perl2exe

2001-06-03 Thread Randal L. Schwartz
>>>>> "Jody" == Jody Lowes <[EMAIL PROTECTED]> writes: Jody> On Sunday 03 June 2001 10:26, you wrote: >> And "perl2exe" isn't. It's an installer maker, not a compiler. Jody> I haven't installed it yet but this is from the

Re: perl2exe

2001-06-03 Thread Randal L. Schwartz
>>>>> "Gerrit" == Gerrit P Haase <[EMAIL PROTECTED]> writes: Gerrit> prachi shroff schrieb am 2001-06-01, 11:04: >> Hi! >> >> I am tying to use the Perl2exe utility but am getting an error : " Invalid >> Platform :win32 ". I

Re: perl2exe

2001-06-03 Thread Gerrit P. Haase
prachi shroff schrieb am 2001-06-01, 11:04: > Hi! > > I am tying to use the Perl2exe utility but am getting an error : " Invalid > Platform :win32 ". I am running Win2000 and installed the exact versions > recommended for the Perl I am using. Any suggestions on t

perl2exe

2001-06-01 Thread prachi shroff
Hi! I am tying to use the Perl2exe utility but am getting an error : " Invalid Platform :win32 ". I am running Win2000 and installed the exact versions recommended for the Perl I am using. Any suggestions on this will be great help. Than