home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Format Collection 48
/
SENT14D.ISO
/
tech
/
delphi
/
disk15
/
sdiapp.pak
/
SDIAPP.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-08-24
|
263 b
|
15 lines
program Sdiapp;
uses
Forms,
Sdimain in 'SDIMAIN.PAS' {SDIAppForm},
About in 'ABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TSDIAppForm, SDIAppForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.