Files
lazarus-ccr/components/fpspreadsheet/examples/visual/wikitablemaker/wikitablemaker.lpr

18 lines
266 B
ObjectPascal
Raw Normal View History

program wikitablemaker;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms, lazcontrols, wtMain;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainFrm, MainFrm);
MainFrm.BeforeRun;
Application.Run;
end.