RE: Interested in thoughts on how to hand off to mirror of script on another server

2003-08-11 Thread Wiechel, Ben
You might take advantage of any of the Perl modules that provide access to the Scheduler and use that to schedule the task on the other machine. The other machine could then watch the primary box and when it comes back up self-terminate. -- Benjamin D. Wiechel Xerox Global Services, Inc. [EMAIL

Re: Rename does not work with Windows

2003-08-11 Thread Perl Thingy
Thanks Mile and other supporters. It's was my mistake, I found that the file was not in the current working directory. All working fine now. PT From: michael higgins [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Rename does not work with Windows Date: Thu, 24 Jul 2003 22:14:03 -0400

Re: Extracting source from exe's

2003-08-11 Thread Trevor Joerges [SendMIME Software]
I think if you ask the PDK mailing list ([EMAIL PROTECTED]), specifically Jan Dubois, he may do it for you if you can prove that the EXE is really produced by you (i.e. name every file in the exe that was compiled probably along with some specific information that only someone who had the original

RE: Installing XML::Parser

2003-08-11 Thread Carter Thompson
Rex, Perhaps using CPAN might get you around the problem. Assuming you have CPAN installed and configured: perl -MCPAN -e 'install XML::Parser' Cheers, Carter. -Original Message- From: Arul, Rex [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 12:01 PM To: [EMAIL

RE: [OT somewhat]: getting Win32 API info

2003-08-11 Thread Gerber, Christopher J
Title: [OT somewhat]: getting Win32 API info -Original Message- From: Peter Eisengrein [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 8:40 AM To: Perl-Win32-Users Mailing List (E-mail) Subject: [OT somewhat]: getting Win32 API info I would like to work with Win32::API

Re: CSV munging and uninitialized values

2003-08-11 Thread Keith C. Ivey
Ted Schuerzinger [EMAIL PROTECTED] wrote: @line = split /\,/; In the documentation for split() it says By default, empty leading fields are preserved, and empty trailing ones are deleted. You want to preserve the empty trailing fields, so you need to use the third argument (and to use the