Linked by Thom Holwerda on Tue 5th Sep 2006 19:34 UTC, submitted by DigitalDame
Permalink for comment 159767
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
News
Linked by Thom Holwerda on 05/23/13 23:22 UTC
Linked by Thom Holwerda on 05/23/13 22:04 UTC
Linked by Thom Holwerda on 05/23/13 22:01 UTC
Linked by Thom Holwerda on 05/23/13 17:52 UTC
Linked by Thom Holwerda on 05/22/13 22:23 UTC
Linked by Thom Holwerda on 05/22/13 13:38 UTC
Linked by Thom Holwerda on 05/22/13 13:30 UTC, submitted by JRepin
Linked by Thom Holwerda on 05/21/13 22:06 UTC
Linked by Thom Holwerda on 05/21/13 21:45 UTC
Linked by Thom Holwerda on 05/21/13 15:53 UTC
More News »
Sponsored Links



Member since:
2006-03-16
You just can't install them in the component pallet.
You can create and use them in your code at run time.
you simply have to add the correct units to the uses list.
For exampe you can easily use Synpase(http://synapse.ararat.cz/) for TCP/IP programmming like so:
uses blcksock;
var
sock:ttcpblocksocket;
response:string;
begin
sock:= ttcpblocksocket.create;
sock.connect('bla.com',5432);
if sock.lasterror = 0 then
begin
sock.sendstring('bla bla bla'+CRLF);
//wait for a response
response:=sock.receievestring(5000);
end else
begin
//error occured,lets see it
showmessage(sock.lasterrordesc);
end;
end;
The point here is you can use most 3rd party components with a little extra work. You would also have to creat the event handlers by hand but it can be done.