merrymonk has asked for the wisdom of the Perl Monks concerning the following question:
The ‘output’ to my PC where I am using Excel 7 on windows XP is next.use strict "vars"; use Win32; use OLE; use Win32::OLE::Const "Microsoft Excel"; my ($excel, $workbook, $sheet); $excel = CreateObject OLE "Excel.Application"; print "excel <$excel>\n"; $excel -> {Visible} = 1; $workbook = $excel -> Workbooks -> Add; print "workbook <$workbook>\n"; $sheet = $workbook -> Worksheets("Sheet1"); $sheet -> Activate; print "sheet <$sheet>\n"; $sheet -> Range("B2") -> {Value} = 1234;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl and Excel 10
by davies (Monsignor) on Jan 31, 2011 at 09:42 UTC | |
by merrymonk (Hermit) on Jan 31, 2011 at 15:09 UTC | |
|
Re: Perl and Excel 10
by bart (Canon) on Jan 31, 2011 at 11:56 UTC | |
by davies (Monsignor) on Jan 31, 2011 at 12:35 UTC | |
by Anonymous Monk on Jan 31, 2011 at 20:47 UTC |