Files
lazarus-ccr/components/fpspreadsheet/examples/visual/wikitablemaker/wikitablemaker.lpr
2015-03-13 00:08:44 +00:00

18 lines
266 B
ObjectPascal

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.