() Short: ------ SFREADLINE() Reads in text up to the next CRLF in a text file Returns: -------- <cLine> => line read in Syntax: ------- SFREADLINE(nHandle) Description: ------------ Reads in text up to the next CRLF in a text file. The pointer is moved back to the starting position when done. To move to a new line, use FMOVE2PRIOR() or FMOVE2NEXT(). Examples: --------- nHandle := fopen("Report.doc") ?sfreadline(handle) while fmove2next(handle) ?sfreadline(handle) end Source: ------- S_FREADL.PRG