lazarus-ccr/components/fpspreadsheet/examples/fpsctrls_no_install
2015-02-04 18:15:19 +00:00
..
demo_ctrls.ico fpspreadsheet: Initial version of fpspreadsheet controls, a set of visual controls to facilitate creation of a spreadsheet application. 2014-11-03 15:34:57 +00:00
demo_ctrls.lpi fpspreadsheet: Some improvements in Laz 1.0 compatibility, still issues. Fix style error in wikitable writer. 2015-01-14 15:34:20 +00:00
demo_ctrls.lpr fpspreadsheet: Use interfaces in the notification mechanism of the visual controls - this avoids requiring the TAChart package even in case of non-chart-aware spreadsheet programs. 2015-01-06 17:42:54 +00:00
main.lfm fpspreadsheet: Some improvements in Laz 1.0 compatibility, still issues. Fix style error in wikitable writer. 2015-01-14 15:34:20 +00:00
main.pas fpspreadsheet: Improve codepage handling for biff2 and biff2 files. 2015-02-04 18:15:19 +00:00
readme.txt fpspreadsheet: Add readme.txt to the new demo folders, fpsctrls and fpsctrls_no_install 2014-11-03 15:54:50 +00:00

FPSpreadsheetControls are a set of visual components which facilitate creation
of a spreadsheet application.

TsWorkbookSource is the base of package, it links the visual components to a
worksheet instance.

TsWorkbookTabControl is a TabControl which displays tabs for each worksheet
of the workbook. Changing the active tab selects the corresponding worksheet.

TsWorksheetGrid is a grid component which displays the contents of a worksheet.
It communicates with the TsWorkbookSource by receiving and sending messages 
on the selected cell.

TsCellEdit is a multi-line edit control (memo) for entering for cell values
and formulas. Pressing ENTER transfers the current text into the worksheet.

TsCellIndicator is a simple edit used to display the address of the currently
selected cell. Editing the text allows to jump to the cell address.

TsSpreadsheetInspector is a StringGrid (ValueListEditor, to be precise) which
displays details on the workbook, the selected worksheet, and the selected
cell values and properties.

Linking these controls to a TsWorkbookSource results in a working spreadsheet
appliation without writing any line of code.


The demo application in the folder "fpsctrls_no_install" can be run without
installing the FPSpreadsheet package.