Programming Reference Manual
 
Syntax
 
FLof(handle%)
 
Description
Returns the length of the file, opened with FOpen under handle%.
 
Parameter
Description
handle%
A handle to the file, previously opened with the FOpen instruction.
See Also
Example
 
Sub Main
Dim Hnd%, rec&
Hnd% = FOpen(“C:\MYDBASE.DAT”, 0, 4)
'read-only, shared
Debug.Print FLof(Hnd%)
FClose Hnd%
End Sub