| |
Spreadsheet::WriteExcel |
If you are reporting a bug in Spreadsheet::WriteExcel then here are 1) Provide information on your system, version of perl and module #!/usr/bin/perl -w print "\n Perl version : $]"; my @modules = qw( for my $module (@modules) { if (not $@) { printf "%21s%-24s\t%s\n", "", $module, $version; __END__ 2) If your version of Spreadsheet::WriteExcel isn't the latest then 3) Say if you tested with Excel, OpenOffice, Gnumeric or something 4) Create a small example program that demonstrates your problem. This Here are some examples of good bug reports: http://groups.google.com/group/spreadsheet-writeexcel/browse_frm/thre... http://groups.google.com/group/spreadsheet-writeexcel/browse_frm/thre... In general the more effort that you put into making a bug report the John.
some pointers.
versions. The following program will generate everything that is
required. Put this information in your bug report.
print "\n OS name : $^O";
print "\n Module versions: (not all are required)\n";
Spreadsheet::WriteExcel
Parse::RecDescent
File::Temp
OLE::Storage_Lite
IO::Stringy
);
my $version;
eval "require $module";
$version = $module->VERSION;
$version = '(unknown)' if not defined $version;
}
else {
$version = '(not installed)';
}
}
you should probably upgrade it (or at least test on a system with an
upgraded version).
else. Say which version of that application you used.
is the very important. The program should be as small as possible. A
few lines of codes are worth tens of lines of text when trying to
describe a bug.
easier it will be to analyse and the quicker you will get a response.
--