On 7/16/07, a_arya2000 <[EMAIL PROTECTED]> wrote:
Thank you very much for suggestions guys, I tried using Spreadsheet::WriteExcel::Big but still having the same issue. I am not sure, what I am doing wrong. My file size is indeed more than 7 MB. Thank you, Partha Dhar
Did you try the suggestion about calling $workbook->close before the end of the program? You can ensure it is called before the end of the program by saying my $workbook = Spreadsheet::WriteExcel->new("file.xls"); END { $workbook->close} This can be useful if you have many possible exits from the program. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/