home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1996 August
/
VPR9608A.BIN
/
del20try
/
install
/
data.z
/
RICHEDIT.DPR
< prev
next >
Wrap
Text File
|
1996-05-08
|
263b
|
15 lines
program RichEdit;
uses
Forms,
REAbout in 'REABOUT.PAS' {AboutBox},
REMain in 'REMain.pas' {MainForm};
{$R *.RES}
begin
Application.Title := 'Rich Edit Control Demo';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.