9.0

171
vbFirstFourDays 2 The first week that has at least four days in the year.
vbFirstFullWeek 3 The first week that entirely in the year.
See Also: Predefined Date Format, Predefined Number Format, User defined Date Format, User defined Number
Format, User defined Text Format.
FreeFile Function
Syntax
FreeFile[( )]
Group
File
Description
Return the next unused shared stream number (greater than or equal to 256). Streams 1 through 255 are private
to each macro. Streams 256 through 511 are shared by all macros.
Example
Sub Main
Debug
.Print FreeFile ' 256
FN = FreeFile
Open
"XXX" For Output As #FN
Debug
.Print FreeFile ' 257
Close
#FN
Debug
.Print FreeFile ' 256
End
Sub
Friend Keyword
Group
Declaration
Description
Friend Functions, Propertys and Subs in a module are available in all other macros/modules that access it. Friends
are not accessible via Object
variables.
Function Definition
Syntax