home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 5 for Professionals
/
DELPHI5.iso
/
Runimage
/
Delphi50
/
Demos
/
Ipcdemos
/
client.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
|
209 b
|
14 lines
program Client;
uses
Forms,
ClntForm in 'ClntForm.pas' {ClientForm},
IPCThrd in 'Ipcthrd.pas';
{$R *.RES}
begin
Application.CreateForm(TClientForm, ClientForm);
Application.Run;
end.