9.0

168
Wend
End
Sub
FileLen Function
Syntax
FileLen(Name$)
Group
File
Description
Return the length of file Name$. If the file does not exist then a run-time error occurs.
Parameter Description
Name$ This string value is the path and name of the file. A path relative to the current
directory can be used.
Example
Sub Main
F$ = Dir
$("*.*")
While
F$ <> ""
Debug
.Print F$;" ";FileLen(F$)
F$ = Dir
$()
Wend
End
Sub
Fix Function
Syntax
Fix(Num)
Group
Math
Description
Return the integer value.
Parameter Description
Num Return the inte
g
er
p
ortion of this numeric value. The number is truncated. Positive
numbers return the next lower integer. Negative numbers return the next higher
integer. If this value is Null then Null is returned.
Example
Sub Main