lazarus/components/dbexport/demo/simple/simpleexport.lpr
2017-10-01 17:34:00 +00:00

23 lines
440 B
ObjectPascal

program simpleexport;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ you can add units after this }, frmmain, gendata, DBFLaz,
RunTimeTypeInfoControls, lazdbexport;
{$R *.res}
begin
Application.Title:='simple data export demo';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.