home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2001 June
/
HDC50.iso
/
Runimage
/
Delphi50
/
Demos
/
Activex
/
Olectnrs
/
OLESDI.DPR
< prev
next >
Wrap
Text File
|
1999-08-11
|
283b
|
16 lines
program olesdi;
uses
Forms,
sdimain in 'sdimain.pas' {MainForm},
about in 'about.pas' {AboutBox};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.