1
0
Files
applications
bindings
components
Comba_Animation
aboutcomponent
acs
beepfp
callite
captcha
chelper
chemtext
cmdline
cmdlinecfg
colorpalette
cryptini
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
IMPORTANT.txt
csvdocument.pas
csvdocument_package.lpk
csvdocument_package.pas
lgpl-2.0.txt
release.lst
release.sh
epiktimer
everettrandom
examplecomponent
exctrls
extrasyn
fpexif
fpsound
fpspreadsheet
fractions
freetypepascal
geckoport
gradcontrols
grid_semaphor
gridprinter
industrialstuff
iosdesigner
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazautoupdate
lazbarcodes
lazmapviewer
lclextensions
longtimer
manualdock
mbColorLib
mplayer
multithreadprocs
nvidia-widgets
onguard
orpheus
playsoundpackage
poweredby
powerpdf
rgbgraphics
richmemo
richview
rtfview
rx
scrolltext
smnetgradient
spktoolbar
splashabout
svn
systools
tdi
thtmlport
tparadoxdataset
tvplanit
xdev_toolkit
zlibar
zmsql
examples
image_sources
lclbindings
wst
lazarus-ccr/components/csvdocument/demo/csvdemo.lpr

21 lines
337 B
ObjectPascal

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.