Close( )

Action: Closes a file previously opened by the Open function.
 
Syntax: Close (FileHandle)
 
Parameters: FileHandle

A numeric expression indicating the handle number of the file to close. Possible values range from 1 to 10.

Returns:
0   File Closed
-2   Invalid File Number Specified 
 
See Also: FreeFileHandle( ), Open( ), ReadLine( ), WriteLine( )
 
Example:

If Close(3)
  Beep
  ? "Error closing file!"
EndIf