How to append to existing excel sheet?

2009-05-27 Thread Kelvin Philip
Hi, Is there any method to append a row to an existing Excel file? Can I do it using the Spreadsheet::WriteExcel module? Looking forward to hear from you. Regards, Kelvin

Problem when multiple subfunctions invoked via ithreads

2009-02-12 Thread Kelvin Philip
Hi, I am calling two seperate fuctions defined under two different perl modules via two independent threads. Now, I use the $thr->join; command to wait for the first thread to complete and then start the second. But it seems that the two module functions are being executed simultaneously. The inte

Perl MOdule Tutorial

2009-02-03 Thread Kelvin Philip
Hi, Can you please point me to some good perl module tutorial for a beginner level? Regards, Kelvin

Re: Pod Usage Example

2008-12-23 Thread Kelvin Philip
Hi, Thanks for the help :-) When I call pod2usage(verbose => 2); the terminal is getting stuck. When I press CTRL+4, it comes out and displays the whole man page. Would you pls suggest a solution for this issue? Regards, Kelvin Philip On Tue, Dec 23, 2008 at 6:54 PM, Mr. Shawn H. Corey wr

Pod Usage Example

2008-12-22 Thread Kelvin Philip
Hi, Would someone guide me with a simple example for perl documentation using Pod :: Usage? Regards, Kelvin Philip

Passing Argument to a Perl Module Function

2008-06-04 Thread KELVIN PHILIP
Hi, Will you please explain how to pass an argument to a subfunction defined in a perl module? This is wahat i had tried; please correct me if I am wrong. *Main:* use MyModule::PrintMe; $name = "John"; my $var = MyModule::PrintMe-> new($name); *Module: *package MyModule::PrintMe; use Export