Re: Help With An Error
- Posted by Travis Beaty <travis_beaty at mcleodusa.net> Jun 26, 2002
- 379 views
Hi Chris! Remember that gets() returns a sequence if a line is there, or an integer (-1) if a line isn't there. So, you need to declare temp as an object, then ... if sequence(temp) then -- There's the line! else -- Oh no, end of file! I'm doomed end if