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