home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 December / Chip_2003-12_cd2.bin / oo / download / f_0019 / sbasic.jar / text / sbasic / common / 03020102.xml < prev    next >
Extensible Markup Language  |  2003-01-16  |  3KB  |  50 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Funkce FreeFile [Runtime]</title><meta name="filename" content="text/sbasic/common/03020102"/><meta name="language" content="en-US"/><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.         p.P2{
  7.                 }
  8.         span.T1{
  9.                 font-weight:bold;}
  10.         </style></head><body>
  11.   
  12.   
  13.   <help:to-be-embedded Eid="freefile" xmlns:help="http://openoffice.org/2000/help">
  14.   <p class="Head1"><help:link Id="66512">Funkce FreeFile [Runtime]</help:link></p>
  15.   <p class="Paragraph">Vr├ít├¡ n├ísleduj├¡c├¡ dostupn├⌐ ─ì├¡slo souboru pro otev┼Öen├¡ souboru. To je u┼╛ite─ìn├⌐, chcete-li po otev┼Öen├¡ jin├╜ch soubor┼» otev┼Ö├¡t je┼ít─¢ dal┼í├¡ soubor a pot┼Öebujete se ujistit, ┼╛e ─ì├¡slo souboru je┼ít─¢ nen├¡ pou┼╛ito.</p>
  16.   </help:to-be-embedded>
  17.   <p class="Paragraph"><span class="T1">Syntaxe:</span></p>
  18.   <p class="Paragraph">FreeFile <help:key-word value="FreeFile" tag="kw66512_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  19.   <p class="Paragraph"><span class="T1">N├ívratov├í hodnota:</span></p>
  20.   <p class="Paragraph">Integer</p>
  21.   <p class="Paragraph"><span class="T1">Parametr:</span></p>
  22.   <p class="Paragraph">Tato funkce by m─¢la b├╜t pou┼╛ita bezprost┼Öedn─¢ p┼Öed p┼Ö├¡kazem Open. Funkce FreeFile vrac├¡ n├ísleduj├¡c├¡ dostupn├⌐ ─ì├¡slo souboru, ale nerezervuje je.</p>
  23.   <p class="P2">P┼Ö├¡klad:</p>
  24.   <p class="PropText">Sub ExampleWorkWithAFile</p>
  25.   <p class="PropText">Dim iNumber As Integer</p>
  26.   <p class="PropText">Dim sZeile As String</p>
  27.   <p class="PropText">Dim aFile As String</p>
  28.   <p class="PropText">Dim sMsg as String</p>
  29.   <p class="PropText">aFile = "c:\data.txt"</p>
  30.   <p class="PropText">sMsg = = ""</p>
  31.   <p class="PropText">iNumber = Freefile</p>
  32.   <p class="PropText">Open aFile For Output As #iNumber</p>
  33.   <p class="PropText">Print #iNumber, "First line of text"</p>
  34.   <p class="PropText">Print #iNumber, "Another line of text"</p>
  35.   <p class="PropText">Close #iNumber</p>
  36.   <p class="PropText"/>
  37.   <p class="PropText">iNumber = Freefile</p>
  38.   <p class="PropText">Open aFile For Input As #iNumber</p>
  39.   <p class="PropText">While not eof(#iNumber)</p>
  40.   <p class="PropText">Line Input #iNumber, sLine</p>
  41.   <p class="PropText">If sLine <>"" then</p>
  42.   <p class="PropText">sMsg = sMsg & sZeile & chr(13)</p>
  43.   <p class="PropText">end if</p>
  44.   <p class="PropText">wend</p>
  45.   <p class="PropText">Close #iNumber</p>
  46.   <p class="PropText">Msgbox sMsg</p>
  47.   <p class="PropText">End Sub</p>
  48.   <p class="PropText"/>
  49.  </body></html>
  50.