lazarus-ccr/components/fpspreadsheet/examples/other
wp_xxyyzz 896c356040 fpspreadsheet: Add demo_protection
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6549 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2018-07-06 16:38:16 +00:00
..
demo_expression_parser.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_expression_parser.pas fpspreadsheet: Redo storage of formulas: formulas now are stored in a separate tree independent of the cells tree. The field FormulaValue of TCell record was removed. All unit tests passed. Demos updated (issues of speedtest due to SST in BIFF8 found - not related). 2018-05-30 22:15:07 +00:00
demo_formula_func.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_formula_func.pas
demo_ignore_formula.lpi fpspreadsheet: Add workbook option boIgnoreFormulas for writing unsupported formulas (See forum https://forum.lazarus.freepascal.org/index.php/topic,40146.0.html). 2018-02-20 23:02:45 +00:00
demo_ignore_formula.lpr fpspreadsheet: Add workbook option boIgnoreFormulas for writing unsupported formulas (See forum https://forum.lazarus.freepascal.org/index.php/topic,40146.0.html). 2018-02-20 23:02:45 +00:00
demo_protection.lpi fpspreadsheet: Add demo_protection 2018-07-06 16:38:16 +00:00
demo_protection.pas fpspreadsheet: Add demo_protection 2018-07-06 16:38:16 +00:00
demo_recursive_calc.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_recursive_calc.pas
demo_search.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_search.pas fpspreadsheet: Redo storage of formulas: formulas now are stored in a separate tree independent of the cells tree. The field FormulaValue of TCell record was removed. All unit tests passed. Demos updated (issues of speedtest due to SST in BIFF8 found - not related). 2018-05-30 22:15:07 +00:00
demo_sorting.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_sorting.pas fpspreadsheet: Make sure that all demos are compiled with -Xg 2017-02-20 17:21:56 +00:00
demo_virtualmode_read.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_virtualmode_read.lpr
demo_virtualmode_write.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_virtualmode_write.lpr fpspreadsheet: Modified virtual mode (VirtualColCount, VirtualRowCount and OnWriteCellData were moved from workbook to worksheet). NOTE: THIS BREAKS EXISTING CODE USING VIRTUAL MODE. 2016-07-14 19:43:15 +00:00
demo_write_colors.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_write_colors.lpr
demo_write_formatting.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_write_formatting.pas fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_write_formula.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_write_formula.pas
demo_write_headerfooter_images.lpi fpspreadsheet: Redo storage of formulas: formulas now are stored in a separate tree independent of the cells tree. The field FormulaValue of TCell record was removed. All unit tests passed. Demos updated (issues of speedtest due to SST in BIFF8 found - not related). 2018-05-30 22:15:07 +00:00
demo_write_headerfooter_images.lpr
demo_write_images.lpi fpspreadsheet: Check (and fix) compilation of all demo projects (changed handling of include files in fpc 3.0.4) 2018-04-18 11:42:22 +00:00
demo_write_images.lpr
financemath.pas
readme.txt

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_colors: show the colors of the Excel8 color palette
  
- demo_write_formatting: shows some simple cell formatting

- demo_write_formula: shows some rpn formulas

- demo_write_images: adds images to worksheets

- demo_write_headerfooter_images: adds images to worksheet headers and footers