home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <html><head><title>Close Statement [Runtime]</title><meta name="filename" content="text/sbasic/common/03020101"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css"> p.P1{ } span.T1{ font-weight:bold;} </style></head><body> <help:to-be-embedded Eid="close" xmlns:help="http://openoffice.org/2000/help"> <p class="Head1"><help:link Id="66504">Close Statement [Runtime]</help:link></p> <p class="Paragraph">Closes a specified file opened with the Open statement.</p> </help:to-be-embedded> <p class="Paragraph"><span class="T1">Syntax</span>:</p> <p class="Paragraph">Close FileNumber As Integer[, FileNumber2 As Integer[,...]] <help:key-word value="Close" tag="kw66504_1" xmlns:help="http://openoffice.org/2000/help"/></p> <p class="Paragraph"><span class="T1">Parameter</span>:</p> <p class="Paragraph">FileNumber : Any integer expression that specifies the number of the data channel opened with the <span class="T1">Open</span> statement.</p> <p class="Paragraph"><span class="T1">Example:</span></p> <p class="PropText">Sub ExampleWorkWithAFile</p> <p class="PropText">Dim iNumber As Integer</p> <p class="PropText">Dim sLine As String</p> <p class="PropText">Dim aFile As String</p> <p class="PropText">Dim sMsg as String</p> <p class="PropText">aFile = "c:\data.txt"</p> <p class="PropText">sMsg = = ""</p> <p class="PropText">iNumber = Freefile</p> <p class="PropText">Open aFile For Output As #iNumber</p> <p class="PropText">Print #iNumber, "First line of text"</p> <p class="PropText">Print #iNumber, "Another line of text"</p> <p class="PropText">Close #iNumber</p> <p class="PropText"/> <p class="PropText">iNumber = Freefile</p> <p class="PropText">Open aFile For Input As iNumber</p> <p class="PropText">While not eof(iNumber)</p> <p class="PropText">Line Input #iNumber, sLine</p> <p class="PropText">If sLine <>"" then</p> <p class="PropText">sMsg = sMsg & sZeile & chr(13)</p> <p class="PropText">end if</p> <p class="PropText">wend</p> <p class="PropText">Close #iNumber</p> <p class="PropText">Msgbox sMsg</p> <p class="PropText">End Sub</p> <p class="PropText"/> </body></html>