lazarus/components/dbexport/demo/simple/simpleexport.lpr
mattias 5b171e74e2 dbexport: added demos from Michael Van Canneyt
git-svn-id: trunk@12872 -
2007-11-15 00:12:16 +00:00

21 lines
428 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;
begin
Application.Title:='simple data export demo';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.