Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
FAQ: Reporting a bug in Spreadsheet::WriteExcel
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  1 message - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
jmcnamara  
View profile  
 More options Jun 28 2007, 1:41 pm
From: jmcnamara <jmcnam...@cpan.org>
Date: Thu, 28 Jun 2007 10:41:50 -0700
Local: Thurs, Jun 28 2007 1:41 pm
Subject: FAQ: Reporting a bug in Spreadsheet::WriteExcel

If you are reporting a bug in Spreadsheet::WriteExcel then here are
some pointers.

1) Provide information on your system, version of perl and module
versions. The following program will generate everything that is
required. Put this information in your bug report.

    #!/usr/bin/perl -w

    print "\n    Perl version   : $]";
    print "\n    OS name        : $^O";
    print "\n    Module versions: (not all are required)\n";

    my @modules = qw(
                      Spreadsheet::WriteExcel
                      Parse::RecDescent
                      File::Temp
                      OLE::Storage_Lite
                      IO::Stringy
                    );

    for my $module (@modules) {
        my $version;
        eval "require $module";

        if (not $@) {
            $version = $module->VERSION;
            $version = '(unknown)' if not defined $version;
        }
        else {
            $version = '(not installed)';
        }

        printf "%21s%-24s\t%s\n", "", $module, $version;
    }

    __END__

2) If your version of Spreadsheet::WriteExcel isn't the latest then
you should probably upgrade it (or at least test on a system with an
upgraded version).

3) Say if you tested with Excel, OpenOffice, Gnumeric or something
else. Say which version of that application you used.

4) Create a small example program that demonstrates your problem. This
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.

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
easier it will be to analyse and the quicker you will get a response.

John.
--


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google