home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1996 August
/
VPR9608A.BIN
/
del20try
/
install
/
data.z
/
OLESDI.DPR
< prev
next >
Wrap
Text File
|
1996-05-08
|
256b
|
15 lines
program olesdi;
uses
Forms,
sdimain in 'sdimain.pas' {MainForm},
about in 'about.pas' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.