Re: Help With An Error
- Posted by Christopher B <president at insight-concepts.com> Jun 26, 2002
- 392 views
Thank you Travis, I do not know how I overlooked that :) Chris -----------------------------------------------------------------= -------------------------------------------------------------- On Wed, 26 Jun 2002 14:44:52 -0600, Travis Beaty wrote: > >Hi Chris! > >Remember that gets() returns a sequence if a line is there, or= an >integer (-1) if a line isn't there. =A0So, >you need to declare temp as an object, then ... > >if sequence(temp) then >=A0-- There's the line! >else >=A0-- Oh no, end of file! I'm doomed >end if >