Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 Aug : Re: D7 standard TCP components
| Subject: | Re: D7 standard TCP components |
| Posted by: | "Remy Lebeau (TeamB)" (no.spam@no.spam.com) |
| Date: | Mon, 7 Aug 2006 11:41:33 |
"Oliver" <o.maas@nospam_metrohm.de> wrote in message
news:44d75bc1$1@newsgroups.borland.com...
> ive been using the old D5 TCP components in D5 for quite a
> while now. They are easy to use and sufficient for my application.
Are you referring to TClientSocket and TServerSocket?
> Now i want to use D7. I used the "new" TTcpClient component
I HIGHLY suggest NOT using that component. TTcpClient and TTcpServer are
grossly inadequate. They are Borland's attempt at cross-platform sockets,
but they are designed for the common elements that Win32 and Linux both
have, and thus have a lot of missing features, requiring a lot more manual
work on the programmer's part.
> I guess i can load the old components from D5, but when i try
> to load the package dclstd50.bpl i get an error message which
> says "package vcl50 cannot be loaded. It contains the unit
> AppEvnts which is also in package vcl70".
You are trying to load a D5 package into D7. You cannot do that. Packages
are version-specific. You have to load D7's version of the package instead.
Gambit