Re: Help Please, PPM3 not working

2003-07-31 Thread Jan Dubois
On Thu, 31 Jul 2003 21:53:22 -0700, "$Bill Luebkert" <[EMAIL PROTECTED]> wrote: >Jan Dubois wrote: > >> The registry entries aren't really used anymore. It seems like you >> renamed your Perl directory. That is a bad idea: various paths inside >> both Perl\lib\Config.pm as well as PPM configura

Re: Help Please, PPM3 not working

2003-07-31 Thread $Bill Luebkert
Jan Dubois wrote: > The registry entries aren't really used anymore. It seems like you > renamed your Perl directory. That is a bad idea: various paths inside > both Perl\lib\Config.pm as well as PPM configuration information must be > updated to keep Perl and PPM working correctly. This restr

Re: Help Please, PPM3 not working

2003-07-31 Thread Jan Dubois
On Fri, 01 Aug 2003 00:34:55 -0300, Alberto Adrian <[EMAIL PROTECTED]> wrote: >I am having trouble at my Win XP Pro with PPM3. It might have started >failing after I used perl -MCPAN ... Now, when I call ppm3 it answers: >Error: neither >'HKEY_LOCAL_MACHINE/SOFTWARE/ActiveState/PPM//InstallLoca

Re: Arrays vs Hashes

2003-07-31 Thread Randy W. Sims
On 7/31/2003 12:42 PM, Moreno, Javier (GXS, Softtek) wrote: Hi all, I was doing a date formatting function and did this: my %number_to_long_month = ( '1' => 'January', '2' => 'February', '3' => 'March', '4' => 'April',

Help Please, PPM3 not working

2003-07-31 Thread Alberto Adrian
Hello, I am having trouble at my Win XP Pro with PPM3. It might have started failing after I used perl -MCPAN ...  Now, when I call ppm3 it answers: Error: neither 'HKEY_LOCAL_MACHINE/SOFTWARE/ActiveState/PPM//InstallLocation' nor 'HKEY_CURRENT_USER/SOFTWARE/ActiveState/PPM//InstallLocation' fo

RE: performance

2003-07-31 Thread Moreno, Javier (GXS, Softtek)
Title: Message Well, assume something like this:   if ($tformat =~ /^[ymd]{1,4}([^ymd]{1})[ymd]{1,4}[^ymd]{1}[ymd]{1,4}$/i or     $tformat =~ /^([ymd]{1,4})[^ymd]{1}([ymd]{1,4})[^ymd]{1}([ymd]{1,4})$/i) { }   Actually this is a weird example since I have accomplished with something differen

Arrays vs Hashes

2003-07-31 Thread Moreno, Javier (GXS, Softtek)
Title: Arrays vs Hashes Hi all, I was doing a date formatting function and did this:     my %number_to_long_month = (     '1' => 'January',     '2' => 'February',     '3' => 'March',     '4' => 'April',     '5' => 'May',