Subject | Re: [ib-support] Question on SP |
---|---|
Author | R. Tulloch |
Post date | 2002-06-10T02:16:38Z |
Hi:
Not only won't it work with the added colon, it won't work without
removing colon at <----
Thanks.
Best regards
Not only won't it work with the added colon, it won't work without
removing colon at <----
Thanks.
Best regards
> At 06/09/2002 09:02 PM (Sunday), R. Tulloch wrote:
> > IF (RATE5B < :REQUIREDMIN) <--------
> > THEN
> > BEGIN
> > RATEBB = RATE5B;
> > RATE5B = 0;
> > RATE3B = 0;
> > END
>
> I have no real idea if this addresses the problem you are seeing but I
> would code this with an additional colon:
>
> > IF (RATE5B < :REQUIREDMIN)
> > THEN
> > BEGIN
> > RATEBB = :RATE5B;
> > RATE5B = 0;
> > RATE3B = 0;
> > END