Close Statement [Runtime]/text/sbasic/shared/03020101.xhpSun Microsystems, Inc.converted from old format - fpeClose statementClose Statement [Runtime]Closes a specified file that was opened with the Open statement.Syntax:Close FileNumber As Integer[, FileNumber2 As Integer[,...]] Parameters:FileNumber: Any integer expression that specifies the number of the data channel that was opened with the Open statement.Example:Sub ExampleWorkWithAFileDim iNumber As IntegerDim sLine As StringDim aFile As StringDim sMsg as StringaFile = "c:\data.txt"sMsg = ""iNumber = FreefileOpen aFile For Output As #iNumberPrint #iNumber, "First line of text"Print #iNumber, "Another line of text"Close #iNumberiNumber = FreefileOpen aFile For Input As iNumberWhile not eof(iNumber)Line Input #iNumber, sLineIf sLine <>"" thensMsg = sMsg & sLine & chr(13)end ifwendClose #iNumberMsgbox sMsgEnd Sub