Re: minimal files required for perl 5.8 to work on a network share

2003-12-09 Thread Sisyphus
Tony Wong (IT) wrote: I want to make perl5.8 work from a network share with the minimal files required. Below are the directories for perl5.8. Can someone help me to trim these directories down to the minimal amount of required files? I need a working perl environment that includes the stan

Re: minimal files required for perl 5.8 to work on a network share

2003-12-09 Thread wwangbigpond.net.au
Using PAR to make your perl file become an executable, which actully bind perl interpreter inside. So you don't have to worry about which perl files to included. Obvious the size of the file will be over 1MB. It's just an option for you to consider, It might not be the one you want. -

minimal files required for perl 5.8 to work on a network share

2003-12-09 Thread Tony Wong (IT)
Title: Message I want to make perl5.8 work from a network share with the minimal files required.  Below are the directories for perl5.8.  Can someone help me to trim these directories down to the minimal amount of required files?   I need a working perl environment that includes the standar

Re: Installing with CPAN.pm

2003-12-09 Thread Randy Kobes
On Tue, 9 Dec 2003, Peter Davis wrote: > > I've tried installing a number of modules with CPAN.pm, and I frequently > get this error: > > C:\Program Files\Microsoft Visual Studio\VC98\bin\nmake.EXE -- OK > Running make test > 'C:\Program' is not recognized as an internal or external command, >

Installing with CPAN.pm

2003-12-09 Thread Peter Davis
I've tried installing a number of modules with CPAN.pm, and I frequently get this error: C:\Program Files\Microsoft Visual Studio\VC98\bin\nmake.EXE -- OK Running make test 'C:\Program' is not recognized as an internal or external command, operable program or batch file. C:\Program Files\Mic

parsing text

2003-12-09 Thread Joe Youngquist
Hello list,   I've been trying to figure out a generalized method of parsing space formatted text to outout into html tables.  The data is verly likely written out using Perl Reports and Pictures, has anyone come up with a general method?   Here's a few examplesof the text that I'd format to

Re: perl arraay

2003-12-09 Thread Sisyphus
Eric Edwards wrote: $input = $input / 2; Make that: $input = int($input / 2); In perl, if $input = 13, then $input / 2 = 6.5 Cheers, Rob -- Any emails containing attachments will be deleted from my ISP's mail server before I even get to see them. If you wish to email me an attachment, plea

Re: Reg:- Printing!

2003-12-09 Thread John S Brigham
Maybe this will help: I downloaded a printer module from http://www.wasx.net. It was written by Binans. I had a little trouble getting it installed, but it works fine. It greatly strengthens my Perl/MySQL development platform. John in Denver On Tue, 9 Dec 2003 23:19:51 +0530 "ananthans" <[E

Re: perl arraay

2003-12-09 Thread $Bill Luebkert
Eric Edwards wrote: > Hello list, > I had written this program in c++ and am trying to rewrite it in perl. It > converts from decimal to binary--but my array size keeps coming out at 1080 > elements. I have some more perl books on the way but am stuck now. > Thanks for any help. > #!/usr/bin/pe