home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
RICHEDIT.DPR
< prev
next >
Wrap
Text File
|
1997-05-12
|
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.