lazarus-ccr/components/fpspreadsheet/examples/other
2014-09-15 21:27:57 +00:00
..
demo_expression_parser.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_expression_parser.pas fpspreadsheet: Add some more formulas 2014-09-01 22:37:14 +00:00
demo_formula_func.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_formula_func.pas fpspreadsheet: Redo handling for formulas: 2014-08-30 18:03:22 +00:00
demo_recursive_calc.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_recursive_calc.pas fpspreadsheet: Redo handling for formulas: 2014-08-30 18:03:22 +00:00
demo_virtualmode_read.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_virtualmode_read.lpr fpspreadsheet: Implement virtual reading mode for biff8 and biff5 (activated by workbook option boVirtualMode when reading). Add demo_virtualmode_read. Update speed test (factor 2 faster than standard mode, main advantage: no significant memory usage) 2014-07-24 11:51:34 +00:00
demo_virtualmode_write.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_virtualmode_write.lpr fpspreadsheet: Redo handling for formulas: 2014-08-30 18:03:22 +00:00
demo_write_formatting.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_write_formatting.pas fpspreadsheet: Rename test_* projects in folder examples/other to demo_*. Remove dependence on laz_fpspreadsheet package for easier testing, use unit directory for compiled files. Add readme.txt for this folder. 2014-07-23 20:52:35 +00:00
demo_write_formula.lpi fpspreadsheet: Modify demos to write compiled units to the common directory "lib" within the examples folder as far as possible. 2014-09-15 21:27:57 +00:00
demo_write_formula.pas fpspreadsheet: Redo handling for formulas: 2014-08-30 18:03:22 +00:00
financemath.pas fpspreadsheet: Add interest rate calculation to complete financial functions supported by fpspreadsheet. Extract financial stuff into separate unit "financemath.pas" which will be proposed as a fpc feature request. 2014-07-07 12:04:33 +00:00
readme.txt fpspreadsheet: Implement virtual reading mode for biff8 and biff5 (activated by workbook option boVirtualMode when reading). Add demo_virtualmode_read. Update speed test (factor 2 faster than standard mode, main advantage: no significant memory usage) 2014-07-24 11:51:34 +00:00

This folder contains various demo applications:

- demo_formula_func: shows how a user-provided function can be registered in
  fpspreadsheet for usage in rpn formulas. The example covers some financial
  functions.
  
- demo_recursive_calc: demonstrates recursive calculation of formulas. All
  formulas in this demo depend on the result of the formula in the next cell,
  except for the last cell. When the formula in the first cell is calculated
  recursive calculation of the other cells is requested.
  
- demo_virtualmode_writing: demonstrates how the virtual mode of the workbook
  can be used to create huge spreadsheet files.
  
- demo_virtualmode_reading: demonstrates how the virtual mode of the workbook
  can be used to read huge spreadsheet files. Requires the file written by
  demo_virtualmode_writing.
  
- demo_write_formatting: shows some simple cell formatting

- demo_write_formula: shows some rpn formulas