Re: MSVCR71.dll error in ActivePerl-5.10.0.1002-MSWin32-x86-283697.msi

2008-02-25 Thread Sisyphus
- Original Message - From: "Chris O" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 26, 2008 7:33 AM Subject: MSVCR71.dll error in ActivePerl-5.10.0.1002-MSWin32-x86-283697.msi > FYI, there appears to be a problem with the latest active perl release > (ActivePerl-5.10.0.1002-MSWin32-x

Re: Perl-Win32-Users Digest, Vol 19, Issue 16

2008-02-25 Thread Ted S.
On Mon, 25 Feb 2008 16:03:37 -0500, in perl David Golden <[EMAIL PROTECTED]> wrote: > On Mon, Feb 25, 2008 at 3:00 PM, > <[EMAIL PROTECTED]> wrote: >> > "David Golden" <[EMAIL PROTECTED]> wrote on 02/23/2008 03:00:19 PM: >> > > my $regex = join q{}, map { $num2chars[$_] } @digits; >> >> The o

Re: Perl-Win32-Users Digest, Vol 19, Issue 16

2008-02-25 Thread David Golden
On Mon, Feb 25, 2008 at 3:00 PM, <[EMAIL PROTECTED]> wrote: > > "David Golden" <[EMAIL PROTECTED]> wrote on 02/23/2008 03:00:19 PM: > > > my $regex = join q{}, map { $num2chars[$_] } @digits; > > The only thing I would object to is the q{}. There's really no point > in using the q{} operator

RE: MSVCR71.dll error in ActivePerl-5.10.0.1002-MSWin32-x86-283697.msi

2008-02-25 Thread Jan Dubois
On Mon, 25 Feb 2008, Chris O wrote: > FYI, there appears to be a problem with the latest active perl release > (ActivePerl-5.10.0.1002-MSWin32-x86-283697.msi). After installation, > when I try to use any DBI related module, perl crashes and windows > displays the error "this application has failed

MSVCR71.dll error in ActivePerl-5.10.0.1002-MSWin32-x86-283697.msi

2008-02-25 Thread Chris O
FYI, there appears to be a problem with the latest active perl release (ActivePerl-5.10.0.1002-MSWin32-x86-283697.msi). After installation, when I try to use any DBI related module, perl crashes and windows displays the error "this application has failed to start because MSVCR71.dll was not found".

Re: Perl-Win32-Users Digest, Vol 19, Issue 15

2008-02-25 Thread Jenda Krynicky
> "David Golden" <[EMAIL PROTECTED]> wrote on 02/23/2008 03:00:19 PM: > > my $regex = join q{}, map { $num2chars[$_] } @digits; The only thing I would object to is the q{}. There's really no point in using the q{} operator ... it just confuses the point here. my $regex = join '', map { $num2c

Re: Perl-Win32-Users Digest, Vol 19, Issue 15

2008-02-25 Thread Robert W Weaver
"David Golden" <[EMAIL PROTECTED]> wrote on 02/23/2008 03:00:19 PM: > Well, it was written to be clever, not maintainable. :-) Point taken. I did mention that I was probably going to far in what was just a game. :-) > In response to Conway: clever algorithms are good; clever code is not so goo