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
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
Hi,
Can you please point me to some good perl module tutorial for a beginner
level?
Regards,
Kelvin
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
Hi,
Would someone guide me with a simple example for perl documentation using
Pod :: Usage?
Regards,
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