home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
Runimage
/
Delphi50
/
Demos
/
Ado
/
Rds
/
rdsserver.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
|
1999-08-11
|
303 b
|
18 lines
program RDSServer;
uses
Forms,
MainForm in 'MainForm.pas' {Form1},
RServer_TLB in 'RServer_TLB.pas',
AppServer in 'AppServer.pas' {RDSAppServer: CoClass};
{$R *.TLB}
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.