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 / 03020104.xml < prev    next >
Extensible Markup Language  |  2001-09-07  |  2KB  |  46 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Reset Statement [Runtime]</title><meta name="filename" content="text/sbasic/common/03020104"/><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="reset" xmlns:help="http://openoffice.org/2000/help">
  12.   <p class="Head1"><help:link Id="66415">Reset Statement [Runtime]</help:link></p>
  13.   <p class="Paragraph">Closes all open files and writes the contents of all file buffers to disk.</p>
  14.   </help:to-be-embedded>
  15.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  16.   <p class="Paragraph">Reset <help:key-word value="Reset" tag="kw66415_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  17.   <p class="Paragraph"><span class="T1">Example:</span></p>
  18.   <p class="PropText">Sub ExampleReset</p>
  19.   <p class="PropText">On Error Goto ErrorHandler</p>
  20.   <p class="PropText">Dim iNumber As Integer</p>
  21.   <p class="PropText">Dim iCount As Integer</p>
  22.   <p class="PropText">Dim sZeile As String</p>
  23.   <p class="PropText">Dim aFile As String</p>
  24.   <p class="PropText">aFile = "c:\data.txt"</p>
  25.   <p class="PropText"/>
  26.   <p class="PropText">iNumber = Freefile</p>
  27.   <p class="PropText">Open aFile For Output As #iNumber</p>
  28.   <p class="PropText">Print #iNumber, "This is a new line of text"</p>
  29.   <p class="PropText">Close #iNumber</p>
  30.   <p class="PropText"/>
  31.   <p class="PropText">iNumber = Freefile</p>
  32.   <p class="PropText">Open aFile For Input As iNumber</p>
  33.   <p class="PropText">For iCount = 1 to 5</p>
  34.   <p class="PropText">Line Input #iNumber, sLine</p>
  35.   <p class="PropText">If sLine <>"" then</p>
  36.   <p class="PropText">rem</p>
  37.   <p class="PropText">end if</p>
  38.   <p class="PropText">Next iCount</p>
  39.   <p class="PropText">Close #iNumber</p>
  40.   <p class="PropText">Exit Sub</p>
  41.   <p class="PropText">ErrorHandler:</p>
  42.   <p class="PropText">Reset</p>
  43.   <p class="PropText">MsgBox "All files will be closed",0,"Error"</p>
  44.   <p class="PropText">End Sub</p>
  45.   <p class="PropText"/>
  46.  </body></html>