home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 December
/
Chip_2003-12_cd2.bin
/
oo
/
download
/
f_0019
/
sbasic.jar
/
text
/
sbasic
/
common
/
03020104.xml
< prev
next >
Wrap
Extensible Markup Language
|
2003-01-16
|
2KB
|
49 lines
<?xml version="1.0" encoding="utf-8"?>
<html><head><title>Příkaz Reset [Runtime]</title><meta name="filename" content="text/sbasic/common/03020104"/><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">
p.P1{
}
p.P2{
}
span.T1{
font-weight:bold;}
</style></head><body>
<help:to-be-embedded Eid="reset" xmlns:help="http://openoffice.org/2000/help">
<p class="Head1"><help:link Id="66415">Příkaz Reset [Runtime]</help:link></p>
<p class="Paragraph">Zavře všechny otevřené soubory a zapíše obsah všech vyrovnávacích pamětí na disk.</p>
</help:to-be-embedded>
<p class="Paragraph"><span class="T1">Syntaxe</span>:</p>
<p class="Paragraph">Reset <help:key-word value="Reset" tag="kw66415_1" xmlns:help="http://openoffice.org/2000/help"/></p>
<p class="P2">Příklad:</p>
<p class="PropText">Sub ExampleReset</p>
<p class="PropText">On Error Goto ErrorHandler</p>
<p class="PropText">Dim iNumber As Integer</p>
<p class="PropText">Dim iCount As Integer</p>
<p class="PropText">Dim sZeile As String</p>
<p class="PropText">Dim aFile As String</p>
<p class="PropText">aFile = "c:\data.txt"</p>
<p class="PropText"/>
<p class="PropText">iNumber = Freefile</p>
<p class="PropText">Open aFile For Output As #iNumber</p>
<p class="PropText">Print #iNumber, "This is a new 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">For iCount = 1 to 5</p>
<p class="PropText">Line Input #iNumber, sLine</p>
<p class="PropText">If sLine <>"" then</p>
<p class="PropText">rem</p>
<p class="PropText">end if</p>
<p class="PropText">Next iCount</p>
<p class="PropText">Close #iNumber</p>
<p class="PropText">Exit Sub</p>
<p class="PropText">ErrorHandler:</p>
<p class="PropText">Reset</p>
<p class="PropText">MsgBox "All files will be closed",0,"Error"</p>
<p class="PropText">End Sub</p>
<p class="PropText"/>
</body></html>