YAPC::Eu

jmcnamara on 2004-09-15T13:25:18

I'm at YAPC::Eu. And I'll be talking in a little while.

If you are here and you read this, say hello.


Hello :-)

cog on 2004-09-15T13:34:18

I have no idea of how to recognize you :-) Otherwise, I'd say hello :-)

My hand-made-badge says "COG" and has a mushroom :-)

run this

mir on 2004-09-15T14:58:03

#!/usr/bin/perl
use Spreadsheet::WriteExcel;

    # Create a new Excel workbook
    my $workbook = Spreadsheet::WriteExcel->new("perl.xls");

    # Add a worksheet
    $worksheet = $workbook->add_worksheet();

    #  Add and define a format
    $format = $workbook->add_format(); # Add a format
    $format->set_bold();
    $format->set_color('red');
    $format->set_align('center');

    # Write a formatted and unformatted string, row and column notation.
    $col = $row = 0;
    $worksheet->write($row, $col, "Hi John!", $format);
__DATA__