You've already forked lazarus-ccr
- persistent storage of workbook - inherits from TCustomDrawGrid instead of from TCustomStringGrid - use FixedRow/Col for row/column headers - displays cell borders as read from the file - uses column widths as read from the file (approximate only) - numbers are right-aligned by default. - demo extended to display worksheets in tabs - some visual improvements of demo - saving not yet working in demo More to follow... git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2951 8e941d3f-bd1b-0410-a28a-d453659cc2b4
18 lines
298 B
ObjectPascal
18 lines
298 B
ObjectPascal
program fpsvisual;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, mainform, LResources, laz_fpspreadsheet_visual
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|