Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 Jun : Re: Confusion about 9 and 10
| Subject: | Re: Confusion about 9 and 10 |
| Posted by: | "Remy Lebeau (TeamB)" (no.spam@no.spam.com) |
| Date: | Tue, 4 Jul 2006 14:40:08 |
"Larry Dew" <ldew@XEGsys.net> wrote in message
news:44aa8d47$1@newsgroups.borland.com...
> I need to use Indy 9 as the are interface changes in 10 that
> will no longer compile, i.e.. ReplyStatus is now private
> within the PingClient.
No, it is not. It is public:
TIdIcmpClient = class(TIdCustomIcmpClient)
public
//...
property ReplyStatus; // <-- here
end;
That was fixed 6 months ago. If yours is still private, then you are using
an outdated version.
Gambit