| View previous topic :: View next topic |
| Author |
Message |
Dave Guest
|
Posted: Wed Mar 03, 2004 8:59 pm Post subject: Using indy udp client in console app |
|
|
Hi
I wish to use the Indy UDP client component in a console application. Can
anyone tell me what the syntax is and give me some examples?
Many thanks
Dave
|
|
| Back to top |
|
 |
Maarten Wiltink Guest
|
Posted: Wed Mar 03, 2004 9:08 pm Post subject: Re: Using indy udp client in console app |
|
|
"Dave" <deepthinkernospam (AT) btinternet (DOT) com> wrote
| Quote: | I wish to use the Indy UDP client component in a console application.
Can anyone tell me what the syntax is and give me some examples?
|
The same as for any other object.
Object:=TClass.Create(Parameters);
try
<use object here>
finally
Object.Free;
end;
Groetjes,
Maarten Wiltink
|
|
| Back to top |
|
 |
|