Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Re: Re: Using Spreadsheet::WriteExcel with mod_perl

by jmcnamara (Monsignor)
on Mar 15, 2001 at 05:19 UTC ( [id://64584]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Using Spreadsheet::WriteExcel with mod_perl and Content-Disposition?
in thread Using Spreadsheet::WriteExcel with mod_perl and Content-Disposition?

If you want to write to a scalar instead of a file I can send you a patch (it will be in the next version) that will let you do this:
#!/usr/bin/perl -w use strict; use IO::Scalar; use Spreadsheet::WriteExcel; my $xls_str; tie *XLS, 'IO::Scalar', \$xls_str; my $workbook = Spreadsheet::WriteExcel->new(\*XLS); my $worksheet = $workbook->addworksheet(); $worksheet->write(0, 0, "Hi Excel!"); $workbook->close(); # The Excel file is now in $xls_str.
or to some other filehandle like this:     my $workbook  = Spreadsheet::WriteExcel->new(\*STDOUT);

John.
--
And the eighth and final rule, if this is your first time using Perl, you will have to write code.

Replies are listed 'Best First'.
Re: Re: Re: Re: Using Spreadsheet::WriteExcel with mod_perl and Content-Disposition?
by one4k4 (Hermit) on Mar 15, 2001 at 05:22 UTC
    Ohhhh, see, that only makes sense. If its in a newer ver, dont go out of your way for little old one4k4. But thank you for the insight. :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://64584]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-26 07:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found