Re: Flushing all open file descriptors...

2005-08-25 Thread Arijit Das
For me to use this, I will have to explicitly specify/SELECT all the file handles and then execute $| =1; which is something i don't want...cos my pgm is huge and finding out open file handles from each corner of it is cumbersome... So, I am looking for a func/cmd which flushes all the open files

Re: Flushing all open file descriptors...

2005-08-25 Thread Petr Vileta
$|=1; maybe this help you. Petr Vileta, Czech republic (My server reject all messages from Yahoo and Hotmail. Send me your mail from another non-spammer site please.) - Original Message - From: "Arijit Das" <[EMAIL PROTECTED]> To: ; Sent: Thursday, August 25, 2005 8:25 PM Subject

RE: [Perl-unix-users] Sharing Variables among Processes...

2005-08-25 Thread Arijit Das
Hello everybody,   Thanks a lot for all your suggesstions...   I think I should be able to solve my problem in the best possible way with one of your suggestions.   Thanks again, ArijitMatt Schneider <[EMAIL PROTECTED]> wrote: Perhaps others might know better but to the best of my knowledge the

Flushing all open file descriptors...

2005-08-25 Thread Arijit Das
Is there a Perl func which, when executed, ensures that all the open file descriptors of the corresponding process are flushed immediately?   What I am looking for is this...   #!/usr/bin/perl # Open lots of files here and write some data to them but do not flush any of them... ... a

RE: Spreadsheet:WriteExcel - Merge Cells

2005-08-25 Thread Ken Barker
Sorry group - too fast on the request. I have figured it out. Ken Barker IT Lead Americall Group, Inc 314-213-7927 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ken Barker Sent: Thursday, August 25, 2005 11:39 AM To: activeperl@listser

Setting Registry Values with Win32::TieRegistry is failing

2005-08-25 Thread JPerlmutter
using the following code to try to set values is failing. the commented out set line works, but changes the type. all variations i I have tried of the uncommented line have failed. ###code through next like this### #! /usr/bin/perl -w u

Spreadsheet:WriteExcel - Merge Cells

2005-08-25 Thread Ken Barker
In using Spreadsheet:WriteExcel - the documentation shows merge cells as: merge_range($first_row, $first_col, $last_row, $last_col, $string, $format); Yet when executing this I get the following error message: Undefined subroutine &main::merge_range called at test2.pl line 145. This line of cod

RE: Spreadsheet:WriteExcel Question

2005-08-25 Thread Dirk Bremer
Ken, Check out Spreadsheet:ParseExcel. You may need to use both modules in concert. Dirk Bremer - Senior Systems Engineer - ESS/AMS - NISC Lake St. Louis MO - USA Central Time Zone 636-755-2652 fax 636-755-2503 [EMAIL PROTECTED] www.nisc.coop -Original Message- From: [EMAIL PROTECTED] [m

RE: Spreadsheet:WriteExcel Question

2005-08-25 Thread Brian Raven
[EMAIL PROTECTED] wrote: > In looking through the documentation for > Spreadsheet:WriteExcel - there are many examples in creating > a new worksheet. Is it possible for this module to open an > existing spreadsheet and add to it? To quote from the "Description" section of the documentation on my

Spreadsheet:WriteExcel Question

2005-08-25 Thread Ken Barker
In looking through the documentation for Spreadsheet:WriteExcel - there are many examples in creating a new worksheet. Is it possible for this module to open an existing spreadsheet and add to it? Ken Barker IT Lead Americall Group, Inc 314-213-7927 [EMAIL PROTECTED] ___