2016-10-20 21:21:08 +00:00
|
|
|
program spready;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2018-08-11 13:44:01 +00:00
|
|
|
Forms, smain, sColWidthForm, sWorksheetProtection, sZoomForm;
|
2016-10-20 21:21:08 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource := True;
|
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
MainForm.BeforeRun;
|
2018-08-11 13:44:01 +00:00
|
|
|
Application.CreateForm(TZoomForm, ZoomForm);
|
2016-10-20 21:21:08 +00:00
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|