1
0
Files
aarre
applications
bindings
components
ZVDateTimeCtrls
aboutcomponent
acs
beepfp
chelper
cmdline
cmdlinecfg
colorpalette
csvdocument
demo
csvdemo.lpi
csvdemo.lpr
csvdemo.res
csvdemo_lazarus_0_9_30.lpi
csvdemo_lazarus_0_9_30.lpr
csvdemo_lazarus_0_9_30.res
mainfrm.lfm
mainfrm.pas
doc
testsuite
csvdocument.pas
csvdocument_package.lpk
csvdocument_package.pas
lgpl-2.0.txt
release.lst
release.sh
epiktimer
fpsound
fpspreadsheet
freetypepascal
geckoport
gradcontrols
iosdesigner
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazbarcodes
manualdock
mplayer
multithreadprocs
nvidia-widgets
onguard
orpheus
poweredby
powerpdf
rgbgraphics
richmemo
richview
rtfview
rx
scrolltext
smnetgradient
spktoolbar
svn
tdi
thtmlport
tparadoxdataset
tvplanit
virtualtreeview
virtualtreeview-new
xdev_toolkit
zlibar
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.