Re: Error installing Crypt::SSLeay

2004-05-11 Thread Randy Kobes
On Tue, 11 May 2004, Anuradha Ammal wrote: > Hi, > I installed active perl 5.6.1 build 638. It was installed successfully. > > Now when I tried to install the package Crypt::SSLeay using the following > command . The below mentioned error is displayed. > > ppm install http://theoryx5.uwinnipeg.ca/

RE: Help with Spreadsheet::WriteExcel

2004-05-11 Thread Gary Nielson
Hey, thanks! I got it working now. Works great. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Darrell Gammill Sent: Sunday, May 09, 2004 10:04 PM To: Gary Nielson; [EMAIL PROTECTED] Subject: RE: Help with Spreadsheet::WriteExcel http://search.cpan.org/

Error installing Crypt::SSLeay

2004-05-11 Thread Anuradha Ammal
Hi, I installed active perl 5.6.1 build 638. It was installed successfully. Now when I tried to install the package Crypt::SSLeay using the following command . The below mentioned error is displayed. ppm install http://theoryx5.uwinnipeg.ca/ppmpackages/Crypt-SSLeay.ppd Error displayed is Ins

Splitting Regex into Individual Components

2004-05-11 Thread Sui Ming Louie
I am trying to “split” a filespec regex into its possible components.   For example, /[Ff].*/ would produce /F.*/ and /f.*/.  Another example could be:  /G.*|Hi.*/ would produce /G.*/ and /Hi.*/.   Is there a module that can parse the filespec regex and give me the desired results?  

Accessing Windows WMI Info from Unix

2004-05-11 Thread John_Ramsden
I currently have a monitoring script that runs on Windows and uses the Win32::OLE module to access and maintain Windows WMI information. Does anyone know if there is a portable module that would allow the script to run remotely on either a Unix or Windows system to access the same data on a Windo

Relocating the ActivePerl installation directory

2004-05-11 Thread Jean-Sébastien Guay
Hello, I'm wondering if I need to do something special when relocating the ActivePerl installation directory. Here's some background on why I want to do this: I want to code Perl at school. But they do not allow anyone to install programs on the PCs there. So I thought I could install ActivePer

Re: Net::FTP

2004-05-11 Thread $Bill Luebkert
Sui Ming Louie wrote: > Is there a way to put the transfer mode inside the constructor of an FTP > session? Does not appear to be. It needs to send the TYPE command to the remote, so you'll need to do it by command as in your second case. You could of course use the '? :' syntax to do it rather