home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Australian Personal Computer 2000 October
/
tst.iso
/
programs
/
borland
/
RUNIMAGE
/
DELPHI40
/
OBJREPOS
/
SDIAPP
/
SDIAPP.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-06-17
|
292 b
|
17 lines
program Sdiapp;
uses
Forms,
SDIMAIN in 'SDIMAIN.pas' {SDIAppForm},
About in 'ABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TSDIAppForm, SDIAppForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.