home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2002 #3 / K-CD_2002-03.iso / OpenOffice / f_0046 / sbasic.jar / text / sbasic / common / 03020203.xml < prev    next >
Extensible Markup Language  |  2001-09-07  |  3KB  |  47 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Line Input # Statement [Runtime]</title><meta name="filename" content="text/sbasic/common/03020203"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         span.T1{
  7.                 font-weight:bold;}
  8.         </style></head><body>
  9.   
  10.   
  11.   <help:to-be-embedded Eid="lineinput" xmlns:help="http://openoffice.org/2000/help">
  12.   <p class="Head1"><help:link Id="66387">Line Input # Statement [Runtime]</help:link></p>
  13.   <p class="Paragraph">Reads strings from a sequential file to a variable.</p>
  14.   </help:to-be-embedded>
  15.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  16.   <p class="Paragraph">Line Input #FileNumber As Integer, Var As String <help:key-word value="Line" tag="kw66387_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  17.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  18.   <p class="Paragraph">FileNumber: Number of the file from which data is ot be read. The file must have been opened in advance with the Open statement and the key word READ.</p>
  19.   <p class="Paragraph">var: The name of the variable used to store the result.</p>
  20.   <p class="Paragraph">With the <span class="T1">Line Input#</span> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string.</p>
  21.   <p class="Paragraph"><span class="T1">Example:</span></p>
  22.   <p class="PropText">Sub ExampleWorkWithAFile</p>
  23.   <p class="PropText">Dim iNumber As Integer</p>
  24.   <p class="PropText">Dim sLine As String</p>
  25.   <p class="PropText">Dim aFile As String</p>
  26.   <p class="PropText">Dim sMsg as String</p>
  27.   <p class="PropText">aFile = "c:\data.txt"</p>
  28.   <p class="PropText"/>
  29.   <p class="PropText">iNumber = Freefile</p>
  30.   <p class="PropText">Open aFile For Output As #iNumber</p>
  31.   <p class="PropText">Print #iNumber, "This is a line of text"</p>
  32.   <p class="PropText">Print #iNumber, "This is another line of text"</p>
  33.   <p class="PropText">Close #iNumber</p>
  34.   <p class="PropText"/>
  35.   <p class="PropText">iNumber = Freefile</p>
  36.   <p class="PropText">Open aFile For Input As iNumber</p>
  37.   <p class="PropText">While not eof(iNumber)</p>
  38.   <p class="PropText">Line Input #iNumber, sLine</p>
  39.   <p class="PropText">If sLine <>"" then</p>
  40.   <p class="PropText">sMsg = sMsg & sZeile & chr(13)</p>
  41.   <p class="PropText">end if</p>
  42.   <p class="PropText">wend</p>
  43.   <p class="PropText">Close #iNumber</p>
  44.   <p class="PropText">Msgbox sMsg</p>
  45.   <p class="PropText">End Sub</p>
  46.   <p class="PropText"/>
  47.  </body></html>