WHILE NOT EOF(i)'-------------
INPUT# i, SymbolStr, Interval, DateStr, TimeStr, OpenPrice, HighPrice, LowPrice, ClosePrice, Dummy
blah
blah
blah
Check for what i want to Accomplish
Set a bunch of vars
etc
etc
etc
WEND
Now this file is 300k lines and I find what I am looking for about 2/3 the way thru it.
How do I execute all the rest of the code
Set a bunch of vars
etc
etc
etc
and then terminate the loop at the WEND even tho I am not at the end of the file?
------------------
Kind Regards
Mike
INPUT# i, SymbolStr, Interval, DateStr, TimeStr, OpenPrice, HighPrice, LowPrice, ClosePrice, Dummy
blah
blah
blah
Check for what i want to Accomplish
Set a bunch of vars
etc
etc
etc
WEND
Now this file is 300k lines and I find what I am looking for about 2/3 the way thru it.
How do I execute all the rest of the code
Set a bunch of vars
etc
etc
etc
and then terminate the loop at the WEND even tho I am not at the end of the file?
------------------
Kind Regards
Mike
Comment