You've already forked lazarus-ccr
aarre
applications
bindings
components
ZVDateTimeCtrls
aboutcomponent
acs
beepfp
chelper
cmdline
cmdlinecfg
colorpalette
csvdocument
epiktimer
fpsound
fpspreadsheet
fractions
freetypepascal
geckoport
gradcontrols
iosdesigner
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazbarcodes
lclextensions
longtimer
manualdock
mplayer
multithreadprocs
nvidia-widgets
onguard
orpheus
playsoundpackage
poweredby
powerpdf
rgbgraphics
richmemo
richview
rtfview
rx
scrolltext
smnetgradient
spktoolbar
svn
tdi
thtmlport
demo_src
GRID.RES
demounit.dfm
demounit.lfm
demounit.lrs
demounit.pas
fdemunit.dfm
fdemunit.lfm
fdemunit.lrs
fdemunit.pas
fontdlg.dfm
fontdlg.lfm
fontdlg.lrs
fontdlg.pas
framedem.dpr
framedem.exe.manifest
framedem.lpi
framedem.res
gopage.dfm
gopage.lfm
gopage.lrs
gopage.pas
htmlabt.dfm
htmlabt.lfm
htmlabt.lrs
htmlabt.pas
htmldemo.dpr
htmldemo.lpi
htmldemo.res
imgform.dfm
imgform.lfm
imgform.lrs
imgform.pas
previewform.dfm
previewform.lfm
previewform.lrs
previewform.pas
printstatusform.dfm
printstatusform.lfm
printstatusform.lrs
printstatusform.pas
submit.dfm
submit.lfm
submit.lrs
submit.pas
package
AGif2.gif
Import1.gif
Order1.gif
TryIt.htm
arizona.jpg
arrows.gif
blkgreen.htm
colors.htm
contents.bmp
crhrn1.wav
demo.css
demo.htm
glass.bmp
gudcolor.htm
leftwin.htm
license.txt
mail5a.gif
minus.gif
music.mid
note.gif
pengbrew.png
plus.gif
properties.htm
pyramids.jpg
readme1.htm
readme2.htm
readme3.htm
sample1.htm
sample2.htm
sample3.htm
smallcheck.gif
space.htm
support.htm
table.bmp
tabltut1.htm
tabltut2.htm
tabltut3.htm
things.htm
ugly.gif
whatsnew.htm
windmill.jpg
wmelon.bmp
tparadoxdataset
tvplanit
virtualtreeview
virtualtreeview-new
xdev_toolkit
zlibar
examples
lclbindings
wst
30 lines
678 B
ObjectPascal
30 lines
678 B
ObjectPascal
![]() |
program HtmlDemo;
|
||
|
{A program to demonstrate the ThtmlViewer component}
|
||
|
|
||
|
uses
|
||
|
{$IFDEF LCL}
|
||
|
Interfaces,
|
||
|
{$ENDIF}
|
||
|
Forms,
|
||
|
demounit in 'demounit.pas' {Form1},
|
||
|
Submit in 'Submit.pas' {SubmitForm},
|
||
|
Fontdlg in 'Fontdlg.pas' {FontForm},
|
||
|
Htmlabt in 'Htmlabt.pas' {AboutBox},
|
||
|
{$IFNDEF LCL}
|
||
|
PreviewForm in 'PreviewForm.pas' {PreviewForm},
|
||
|
Gopage in 'Gopage.pas' {GoPageForm},
|
||
|
PrintStatusForm in 'PrintStatusForm.pas' {PrnStatusForm},
|
||
|
{$ENDIF}
|
||
|
ImgForm in 'ImgForm.pas' {ImageForm};
|
||
|
|
||
|
{$IFDEF MSWINDOWS}
|
||
|
{$R *.res}
|
||
|
{$ENDIF}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.CreateForm(TSubmitForm, SubmitForm);
|
||
|
Application.Run;
|
||
|
end.
|