RE: Can't locate Date/Format.pm

2002-10-30 Thread FARRINGTON, RYAN
Title: Message Mark, Here comes a stupid question. Did you extract it? If so it created a directory named 'TimeDate-1.1301' under that you'll see 2 directories and 4 files... you have 2 choices... you can either type the following: perl makefile.pl nmake nmake test nmake install I've

RE: Can't locate Date/Format.pm

2002-10-30 Thread Ricci, Mark
Title: Message Thanks Ryan. I was able to find it on PPM after going to the CPAN site. Mark -Original Message-From: FARRINGTON, RYAN [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 30, 2002 12:15 PMTo: 'Ricci, Mark'; FARRINGTON, RYAN; '[EMAIL PROTECTED]'Subject:

RE: Trimming Leading and Trailing Whitespaces

2002-10-30 Thread Stovall, Adrian M.
$string = cat and dog; $string =~ s/^\s+(.*)\s+$/$1/; -Original Message- From: Stephens, Wes (N-Sybase) [mailto:wes.stephens;lmco.com] Sent: Wednesday, October 30, 2002 11:44 AM To: ActivePerl (E-mail); Perl-Win32-Users (E-mail) Subject: Trimming Leading and Trailing

RE: Trimming Leading and Trailing Whitespaces

2002-10-30 Thread mgfranz
Doesn't Perl have Trim function? -Original Message- From: [EMAIL PROTECTED] [mailto:perl-win32-users-admin;listserv.ActiveState.com]On Behalf Of Burak Gürsoy Sent: Wednesday, October 30, 2002 10:07 AM To: Stephens, Wes (N-Sybase); ActivePerl (E-mail); Perl-Win32-Users (E-mail) Subject:

question about Compression::zlib module

2002-10-30 Thread Reddy Kankanala
Hi all, I'm using this module to compress and .gz a file on windows. works ok , except one thing , when i try to view the zipfile, it's having this funny CRLF character in there. is there a way to keep all the cariagereturn/linefeeds intact?? Thanks in advance. Reddy

Way to determine if a text file is being accessed

2002-10-30 Thread Norris, Joseph
hello to all, Is there a way under windows 2000 via perl to determine when a file is currently opened with text editor? Thanks. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Trimming Leading and Trailing Whitespaces

2002-10-30 Thread Joseph P. Discenza
[EMAIL PROTECTED] wrote, on Wednesday, October 30, 2002 1:11 PM : Doesn't Perl have Trim function? Obviously you're confusing Perl with VB. B^) Joe == Joseph P. Discenza, Sr. Programmer/Analyst

RE: Help using XML::Parser

2002-10-30 Thread Norris, Joseph
That's what I use. I have some sample code of how to use it if you would like. -Original Message- From: Philip Morley [mailto:PMorley;edisonmission.com] Sent: Wednesday, October 30, 2002 8:28 AM To: [EMAIL PROTECTED] Subject: Help using XML::Parser I am new to using XML, so can someone

Problem with use strict

2002-10-30 Thread Karl-Heinz Kuth
I have a problem with use strict: There are two files. The file test_template.pl calls the file test_modul.pl via a variable. I read this file name from an ini-file. But for the example I wrote it into a variable ($modul). File: test_template.pl: use strict; my $Simulation = y; my $modul =

RE: Trimming Leading and Trailing Whitespaces

2002-10-30 Thread mgfranz
Oh how true... Where are my manners... ;-) -Original Message- From: Joseph P. Discenza [mailto:jdiscenza;carletoninc.com] Sent: Wednesday, October 30, 2002 10:52 AM To: [EMAIL PROTECTED]; 'Perl-Win32-Users (E-mail)' Subject: RE: Trimming Leading and Trailing Whitespaces [EMAIL

RE : RE : Memory consumption

2002-10-30 Thread Thomas Drugeon
Witch version of ActivePerl do you have (I have the 5.6 633)? What results do you get exactly (time for the loop, memory consumption at its end, result of the undef) ? thanks maybe it's your configuration, your environnment is not good, we have old pc than yours and it's ok --- Thomas

Excel, OLE, and Activestae PERL 5.6.1 rel 633 on Windows 2K.

2002-10-30 Thread Daniel Needles
Hello, The following program: use strict; use warnings; use Win32::OLE; my $xlfile ='c:\tmp\Book1.xls'; my $xl_app = Win32::OLE-new(Excel.Application); $xl_app-{'Visible'} = 0; my $workbook = $xl_app-Workbooks-Open($xlfile); my $worksheet = $workbook-Worksheets(1); my $cellA1 =

Re: Help using XML::Parser

2002-10-30 Thread Thomas R Wyant_III
Phil - You might want to look at XML::Simple. I get the impression XML::Parser is the foundation of a _lot_ of XML code (including XML::Simple). XML::Simple will load the XML into a data structure that looks a lot more like what you probably want to massage with Perl. It goes to considerable

RE: Excel, OLE, and Activestae PERL 5.6.1 rel 633 on Windows 2K.

2002-10-30 Thread Charbeneau, Chuck
From: Daniel Needles [mailto:daniel.needles;Callisma.com] Subject: Excel, OLE, and Activate PERL 5.6.1 rel 633 on Windows 2K. The following program: [SNIP] C:\Documents and Settings\dln1\AANCperl test.pl Win32::OLE(0.1502) error 0x80070005: Access is denied in PROPERTYPUT Visible at

RE: Excel, OLE, and Activestae PERL 5.6.1 rel 633 on Windows 2K.

2002-10-30 Thread Daniel Needles
Chuck, Thanks for the response. Sorry about that. I sent the message out before checking monks again. 1. I have MS Excel 2000 9.0.3821 SR-1. 2. The program was: use strict; use Win32::OLE qw(in with); use Win32::OLE::Const 'Microsoft Excel'; $Win32::OLE::Warn = 3; # Die on Errors. my

Re: Problem with use strict

2002-10-30 Thread $Bill Luebkert
Karl-Heinz Kuth wrote: I have a problem with use strict: There are two files. The file test_template.pl calls the file test_modul.pl via a variable. I read this file name from an ini-file. But for the example I wrote it into a variable ($modul). File: test_template.pl: use strict; my

Re: Way to determine if a text file is being accessed

2002-10-30 Thread shurst
hello to all, Is there a way under windows 2000 via perl to determine when a file is currently opened with text editor? Peter Guzis posted code a while back that used Win32::SharedFileOpen + flock. For reasons that are unclear to me, Win32::SharedFileOpen was not being polite about

Where are older builds of perl?

2002-10-30 Thread steve silvers
I've been surfing the bit unfriendly site of activestate. I can only find the new version 633 for download. Where can I get older versions.. ie: 626 ... 522 Thanks in advance. Steve _ Unlimited Internet access for only

resurrecting UTF8 encoding with perl

2002-10-30 Thread Converse, Anthony
Hi all, Perl info: This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered patch, see perl -V for more detail) Copyright 1987-2001, Larry Wall Binary build 633 provided by ActiveState Corp. http://www.ActiveState.com In the perlop documentation

While

2002-10-30 Thread Cristian Carvajal
I have a question regarding to an aplication I am working on with an ulimited while cicle While (1) {#code } This cicle keeps asking until one of the exit functions appears to finish the cicle. My problem is that the cicle consumues 100% of the CPU's resources, making things slower on

RE: Errors while using perlcc

2002-10-30 Thread Rajendra Babu, Praveen
IMPORTANT-(1) The contents of this email and its attachments are confidential and intended only for the individual or entity named above. Any unauthoriseduse of the contents is expressly prohibited. If you receive this email in error, please contact us, then delete the email.(2) ACNielsen

Re: While

2002-10-30 Thread Alan Dickey
I have a question regarding to an aplication I am working on with an ulimited while cicle While (1) { #code } This cicle keeps asking until one of the exit functions appears to finish the cicle. My problem is that the cicle consumues 100% of the CPU's resources, making