in reply to Spreadsheet::WriteExcel # of files limitation?
#!/usr/bin/perl -wl use strict; use Spreadsheet::WriteExcel; my $filename = 'test001'; $|++; for (1..100) { my $workbook = Spreadsheet::WriteExcel->new($filename . '.xls +'); my $worksheet = $workbook->addworksheet(); $worksheet->write(0, 0, "Hi Excel!"); $workbook->close(); print "Writing file : ", $filename++; }
Perhaps you could send me a more detailed bug report with your OS, version of perl, version of Spreadsheet::WriteExcel and the program that is causing the problems (or the smallest possible program that demonstrates this behaviour).
--
John.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Spreadsheet::WriteExcel # of files limitation?
by tcdo6666 (Initiate) on Jul 17, 2002 at 17:57 UTC | |
by jmcnamara (Monsignor) on Jul 18, 2002 at 09:44 UTC |