re: Upgrading Perl

2006-02-10 Thread Bernard Kenik
If you added additional repositories to your PPM setup, then you probably need to set them up again before running the restore to make sure ppm can locate all the modules again. I have the documentation on ppm but did not find how to do what I would like to do. I would like to save the de

Re: Need help with h2xs and XS

2005-10-29 Thread Bernard Kenik
Thank you for your reply. See inline comments. - Original Message - From: "Bernard Kenik" <[EMAIL PROTECTED]> To: Sent: Monday, October 24, 2005 1:21 PM Subject: Need help with h2xs and XS I am currently trying to learn how to use XS. I am reading and doing the

Re: Need help with h2xs and XS

2005-10-24 Thread Bernard Kenik
- Original Message - From: "Reinhard Pagitsch" <[EMAIL PROTECTED]> To: "Bernard Kenik" <[EMAIL PROTECTED]> Cc: Sent: Monday, October 24, 2005 2:50 AM Subject: Re: Need help with h2xs and XS Hello Bernard, You did not include the libraries for

Need help with h2xs and XS

2005-10-23 Thread Bernard Kenik
I am currently trying to learn how to use XS. I am reading and doing the examples in the perlxstut. So far I have not been able to do example1. I am using Windows XP with Service Pack 2 on eMachine with an AMD64 cpu ActivePerl 5.8.7 VC++ 2003 Toolkit V

OLE-Browser Problem

2005-10-10 Thread Bernard Kenik
I have a brand new installation of ActivePerl 5.8.7 on a Windows XP with SP2 included When I select the OLE Browser htm short cut, I get an IE Window with blank frames. I have Browser.htm and Browser.html in the html::OLE-Brower folder. Clicking on the html file brings up an IE Window with em

Re: regenerating AS perl html docs

2005-10-08 Thread Bernard Kenik
Sorry if I am dense, but I want to sure that I understand the instructions you gave to Chris. My harddrive crashed and this is a virgin installation. Refer to questions below. Thank you for your patience. - Original Message - From: "Jan Dubois" <[EMAIL PROTECTED]> To: "'Chris Wagner'

Re: 'Aspell' Module for win2k - activePerl 5.8 needed

2003-11-29 Thread Bernard Kenik
If you have http://theoryx5.uwinnipeg.ca/ppms/ as one of your repositories, then "ppm search aspell" will locate what you want. it returns "text-aspell" - Original Message - From: "Rainer Bruch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 29, 2003 8:43 PM Subject

Re: first time creating a module,question on pod2hmtl

2003-11-24 Thread Bernard Kenik
the infile should be a "name.pod" file and the outfile should be a "name.html" file - Original Message - From: "$Bill Luebkert" <[EMAIL PROTECTED]> To: "lorid" <[EMAIL PROTECTED]> Cc: "perl users" <[EMAIL PROTECTED]> Sent: Monday, November 24, 2003 9:27 PM Subject: Re: first time creating

Re: just installed ActivePerl on my win98 - what's next

2003-11-22 Thread Bernard Kenik
ultraedit gets my vote   - Original Message - From: Glenn Darwin To: Ted S. Cc: [EMAIL PROTECTED] Sent: Friday, November 21, 2003 11:03 PM Subject: Re: just installed ActivePerl on my win98 - what's next Here is my favorite...http://www.ultraedit.com/Gle

Re: Reg Ex

2003-10-21 Thread Bernard Kenik
1. open the file for read 2. read one line 3. use $newstring = substr($line, 20) to remove the first 20 characters 4. check if your 4 character string match /^XWYZ/ 5. you can separate the $newstring if you want to into 2 substrings $substringA = substr($newstring, 0, 4) $substringB = su

Re: Win32-Daemon module installation problem!

2003-10-16 Thread Bernard Kenik
Title: Win32-Daemon module installation problem! What this means is that you do you have the appropriate machine...Some of the modules require that your machine is a server such as Window 2000. It will not run on a Windows 98 machine which is not a suitable installation target.   - Ori

Re: counting characters in a text file

2003-10-12 Thread Bernard Kenik
We don't do homework - Original Message - From: "R. van Erven" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, October 12, 2003 3:22 PM Subject: counting characters in a text file > Can anyone help me in writing a perl script that read a text file, reads and > counts the cha

Re: Use of uninitialized value in concatenation (.) or string at...

2003-09-06 Thread Bernard Kenik
use what the message states; you are using an uninitialize string. example my $string;# $string is declared but not initialized! so any operation you do on that string (except an assignment) with produce the error message. - Original Message - From: "Devon Young" <[EMAIL PROTECTED

Re: Help with snippet

2003-08-21 Thread Bernard Kenik
I am not sure what you are trying to accomplish If you would give a sample of the expected output, it would help - Original Message - From: "steve silvers" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 20, 2003 8:56 AM Subject: Help with snippet > This should be ea

Re: CSV munging and "uninitialized values"

2003-08-14 Thread Bernard Kenik
=== #! perl -w use strict; # declare an array my @line = (); # fill in some values $line[0] = "a name"; # first location $line[3] = 9; # fourth location $line[9] = 15;# tenth location my $length = @