Newsgroups : Borland : borland.public.delphi.internet.winsock : 2007 Mar : Re: TidContext does not contain a member name Connection
| Subject: | Re: TidContext does not contain a member name Connection |
| Posted by: | "Remy Lebeau (TeamB)" (no.spam@no.spam.com) |
| Date: | Thu, 15 Mar 2007 09:18:59 |
"Marc" <chantmar@albint.com> wrote in message
news:45f95440$1@newsgroups.borland.com...
> This simple structure does not work in my code.
Yes, it will.
> The error is : TidContext does not contain a member name Connection.
Yes, it does:
--- IdContext.pas ---
type
TIdContext = class(TIdTask)
protected
//...
FConnection: TIdTCPConnection;
//...
public
//...
property Connection: TIdTCPConnection read FConnection;
//...
end;
Gambit
none