Woops! Didn't look carefully enough - Stacey is of course correct
Mark
----- Original Message -----
From: "Stacey Verner" <[EMAIL PROTECTED]>
To: "Multiple recipients of list delphi" <[EMAIL PROTECTED]>
Sent: Thursday, June 28, 2001 3:57 PM
Subject: RE: [DUG]: if case else


> If you ignore the case statements you are calling begin, without an end.
>
> if InputIsCDG then
> begin
>   ...
> else
>   ...
> end;
>
> What you need is either:
>
> if InputIsCDG then
>   ...
> else
>   ...
>
> or
>
> if InputIsCDG then
> begin
>   ...
> end
> else
>   ...
> end;
>
> Stacey
> --------------------------------------------------------------------------
-
>     New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>                   Website: http://www.delphi.org.nz
> To UnSub, send email to: [EMAIL PROTECTED]
> with body of "unsubscribe delphi"
>

---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"

Reply via email to