Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 May : Re: Basic newbie Indy 10 problems
| Subject: | Re: Basic newbie Indy 10 problems |
| Posted by: | "Remy Lebeau (TeamB)" (no.spam@no.spam.com) |
| Date: | Fri, 12 May 2006 03:02:51 |
"John Carlyle-Clarke" <jpcc@removethis.bigfoot.com> wrote in message
news:Xns97C16975FDC34discombobulation@207.105.83.66...
> if (FUseTLS in ExplicitTLSVals) and (not LContent.UsingTLS) then
> begin
>
> should read:
>
> if (FUseTLS in ExplicitTLSVals) and (not LContext.UsingTLS) then
> begin
Those two lines are identical, and there is no typo in the original anyway.
Why do you think that there is?
> if not LContext.SMTPState in [idSMTPMail, idSMTPRcpt] then begin
>
> should read:
>
> if not (LContext.SMTPState in [idSMTPMail, idSMTPRcpt]) then begin
That is not a typo. The parenthesis are not required.
> Otherwise it fails to compile.
Please be more specific. What are the EXACT error messages?
Gambit