dcutcher has asked for the wisdom of the Perl Monks concerning the following question:
my $ex = Win32::OLE->GetActiveObject'Excel.Application') || Win32::OLE->new('Excel.Application', 'Quit'); $book = $ex->Workbooks->Add; $sheet = $book->Worksheets(1); # designate row 1 and 2 as header rows $sheet->PageSetup->{PrintTitleRows} => "1:2"; # add a page break $sheet->HPageBreaks->Add({After=>ActiveCell});
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32::OLE and EXCEL
by holli (Abbot) on Aug 08, 2005 at 17:52 UTC | |
by dcutcher (Initiate) on Aug 09, 2005 at 10:11 UTC | |
|
Re: Win32::OLE and EXCEL
by marto (Cardinal) on Aug 08, 2005 at 16:30 UTC | |
by dcutcher (Initiate) on Aug 08, 2005 at 16:41 UTC | |
by marto (Cardinal) on Aug 08, 2005 at 17:42 UTC | |
|
Re: Win32::OLE and EXCEL
by davidrw (Prior) on Aug 08, 2005 at 17:28 UTC |