You've already forked lazarus-ccr
applications
bindings
components
Comba_Animation
aboutcomponent
acs
beepfp
callite
captcha
chelper
chemtext
cmdline
cmdlinecfg
colorpalette
cryptini
csvdocument
epiktimer
everettrandom
examplecomponent
exctrls
examples
ButtonEx
CheckComboBoxEx
CheckCtrlsEx
CurrSpinEditEx
ImageListEx
ProgressBarEx
demo.lpi
demo.lpr
main.lfm
main.pas
QuestionDlgEx
ShapeEx
fpdoc
images
source
exctrlspkg.lpk
exctrlspkg.pas
exctrlspkg_dsgn.lpk
exctrlspkg_dsgn.pas
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
26 lines
412 B
ObjectPascal
26 lines
412 B
ObjectPascal
![]() |
program demo;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
{$IFDEF UNIX}
|
||
|
cthreads,
|
||
|
{$ENDIF}
|
||
|
{$IFDEF HASAMIGA}
|
||
|
athreads,
|
||
|
{$ENDIF}
|
||
|
Interfaces, // this includes the LCL widgetset
|
||
|
Forms, main, ExProgressbar
|
||
|
{ you can add units after this };
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
RequireDerivedFormResource:=True;
|
||
|
Application.Scaled:=True;
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|
||
|
|