home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 4 Bible
/
Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso
/
source
/
DDE2
/
Client2.dpr
< prev
next >
Wrap
Text File
|
1995-09-02
|
177b
|
13 lines
program Client2;
uses
Forms,
Client in 'CLIENT.PAS' {ClientForm};
{$R *.RES}
begin
Application.CreateForm(TClientForm, ClientForm);
Application.Run;
end.