You've already forked lazarus-ccr
aarre
applications
bindings
components
ZVDateTimeCtrls
aboutcomponent
acs
beepfp
callite
chelper
cmdline
cmdlinecfg
colorpalette
csvdocument
epiktimer
flashfiler
fpsound
fpspreadsheet
fractions
freetypepascal
geckoport
gradcontrols
iosdesigner
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazautoupdate
lazbarcodes
lclextensions
longtimer
manualdock
mbColorLib
mplayer
multithreadprocs
nvidia-widgets
onguard
orpheus
playsoundpackage
poweredby
powerpdf
rgbgraphics
richmemo
richview
rtfview
sample
overview.rtf
project1.lpi
project1.lpr
unit1.lfm
unit1.lrs
unit1.pas
COPYING.LGPL
COPYING.modifiedLGPL
README.txt
rtfdata.inc
rtfparspre211.pp
rtfview.lrs
rtfview.pas
rtfviewpkg.lpk
rtfviewpkg.pas
trtfview.xpm
rx
scrolltext
smnetgradient
spktoolbar
svn
tdi
thtmlport
tparadoxdataset
tvplanit
virtualtreeview
virtualtreeview-new
xdev_toolkit
zlibar
examples
lclbindings
wst
41 lines
543 B
ObjectPascal
41 lines
543 B
ObjectPascal
![]() |
unit Unit1;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, RTFView,
|
||
|
Buttons;
|
||
|
|
||
|
type
|
||
|
{ TForm1 }
|
||
|
|
||
|
TForm1 = class(TForm)
|
||
|
Button2: TButton;
|
||
|
View: TRTFView;
|
||
|
procedure Button2Click(Sender: TObject);
|
||
|
private
|
||
|
{ private declarations }
|
||
|
public
|
||
|
{ public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
Form1: TForm1;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{ TForm1 }
|
||
|
|
||
|
procedure TForm1.Button2Click(Sender: TObject);
|
||
|
begin
|
||
|
View.LoadFromFile('overview.rtf');
|
||
|
end;
|
||
|
|
||
|
initialization
|
||
|
{$I unit1.lrs}
|
||
|
|
||
|
end.
|
||
|
|