[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: while/for loop infinite (time out) "runtime errors"



PureBytes Links

Trading Reference Links

Correct me if I'm wrong, but I believe Omega added the timeout in TS2000 
(probably because they believed it was a "feature")


At 07:34 PM 9/13/2001 -0700, DH wrote:
> > while value0 < 10000
> >   begin
> >     for value1 = 1 to 100000
> >       begin
> >       end;
> >     fileappend("c:\debug\loopcheck1.csv", numtostr(value0,0) + newline);
> >     value0 = value0 + 1;
> >   end;
>
>It worked in TS4 after i shortened the filename to 8 characters. Counted
>up to 9999 in the file, just like it should. P450, NT6, 320MB. I can see
>how it could really eat memory trying to store that many internal loop
>values.
>
>--
>   Dennis