in reply to Linking to Perl from Pascal
If you need to create an Excel file with formatting and formulas then there are easier alternatives such as creating a HTML file or an XML file.
Excel can read HTML tables and it preserves the cell formatting and interpolates any formulas in the text. It will read anything from a very simple <table> structures to its own HTML format.
See Two-dimensional array to "Excel" format for an example.
The XML format used by Excel 2002 and later is called SpreadsheetML and the specification and schemas are available here. The XML format is relatively easy to handle. The Spreadsheet::WriteExcelXML module uses this approach.
As an aside, I wrote Spreadsheet::WriteExcel and as it happens I wrote one of its simpler precursors in Pascal. :-)
--
John.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Linking to Perl from Pascal
by Anonymous Monk on May 17, 2004 at 14:20 UTC | |
by flyingmoose (Priest) on May 17, 2004 at 17:39 UTC | |
by Anonymous Monk on May 19, 2004 at 21:22 UTC |