1
0
Files
applications
bindings
components
acs
beepfp
chelper
cmdline
colorpalette
csvdocument
demo
csvdemo.lpi
csvdemo.lpr
csvdemo.res
mainfrm.lfm
mainfrm.pas
doc
testsuite
csvdocument.pas
csvdocument_package.lpk
csvdocument_package.pas
lgpl-2.0.txt
release.lst
release.sh
epiktimer
fpspreadsheet
freetypepascal
geckoport
gradcontrols
iphonelazext
jvcllaz
kcontrols
lazbarcodes
manualdock
mplayer
multithreadprocs
onguard
orpheus
powerpdf
rgbgraphics
richmemo
richview
rtfview
rx
smnetgradient
spktoolbar
svn
thtmlport
tparadoxdataset
tvplanit
virtualtreeview
virtualtreeview-new
xdev_toolkit
examples
lclbindings
wst
lazarus-ccr/components/csvdocument/demo/csvdemo.lpr

21 lines
337 B
ObjectPascal
Raw Normal View History

program csvdemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, mainfrm;
{$R csvdemo.res}
begin
Application.Title := 'CsvDemo';
Application.Initialize;
Application.CreateForm(TfmCSVTest, fmCSVTest);
Application.Run;
end.