Programming Reference Manual
 
Syntax
 
FLInput(handle%[,bufsize%])
 
Description
Reads an entire line from the file, opened with FOpen under handle%, an returns the string value of this line.
 
NOTE: A line may not contain more than 32767 characters .
 
Parameter
Description
handle%
A handle to the file, previously opened with the FOpen instruction.
bufsize%
the maximum line width, default 1K (1024 bytes), maximum 32K (32767 bytes).
See Also
Example
 
Sub Main
Dim Hnd%
Hnd% = FOpen(“C:\MYDBASE.DAT”, 0, 4)
'read-only, shared
FSeek Hnd%, 0
While Not FEof(Hnd%)
Debug.Print FLInput(Hnd%)
Wend
FClose Hnd%
End Sub