lazarus/components/dbexport/demo/stdexports/stdexports.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
427 B
ObjectPascal

program stdexports;
{$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:='Standard export routines';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.