home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2001 June
/
HDC50.iso
/
Runimage
/
Delphi50
/
Demos
/
Doc
/
Textedit
/
TEXTEDIT.DPR
< prev
next >
Wrap
Text File
|
1999-08-11
|
219b
|
14 lines
program TextEdit;
uses
Forms,
MDIFrame in 'MDIFrame.pas' {FrameForm},
MDIEdit in 'MDIEdit.pas' {EditForm};
{$R *.RES}
begin
Application.CreateForm(TFrameForm, FrameForm);
Application.Run;
end.