Files
help/helpcontent2/source/text/sbasic/shared/03020304.xhp
Rüdiger Timm 0b847300b2 INTEGRATION: CWS helpcontentbeta (1.1.2); FILE MERGED
2004/09/16 11:45:17 fpe 1.1.2.1: Regular Update
2004-11-26 13:51:06 +00:00

100 lines
6.2 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<!--***********************************************************************
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRUNTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRUNTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc..
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************-->
<helpdocument version="1.0">
<meta>
<topic id="textsbasicshared03020304xml" indexer="include" status="PUBLISH">
<title id="tit" xml-lang="en-US">Seek Function [Runtime]</title>
<filename>/text/sbasic/shared/03020304.xhp</filename>
</topic>
<history>
<created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created>
<lastedited date="2004-09-01T15:25:45">converted from old format - fpe</lastedited>
</history>
</meta>
<body>
<section id="seek">
<bookmark xml-lang="en-US" branch="index" id="bm_id3154367"><bookmark_value>Seek function</bookmark_value>
</bookmark>
<paragraph role="heading" id="hd_id3154367" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020304.xhp" name="Seek Function [Runtime]">Seek Function [Runtime]</link></paragraph>
<paragraph role="paragraph" id="par_id3156280" xml-lang="en-US" l10n="U" oldref="2">Determines the position for the next writing or reading in a file that was opened with the open statement. The return value corresponds to the value determined by the Seek statement:</paragraph>
</section>
<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US" l10n="U" oldref="3">For random access files, the Seek function returns the number of the next record to be read.</paragraph>
<paragraph role="paragraph" id="par_id3161831" xml-lang="en-US" l10n="U" oldref="4">For all other files, the function returns the byte position at which the next operation is to occur.</paragraph>
<paragraph role="paragraph" id="par_id3155854" xml-lang="en-US" l10n="U" oldref="5">See also: <link href="text/sbasic/shared/03020103.xhp" name="Open">Open</link>, <link href="text/sbasic/shared/03020305.xhp" name="Seek">Seek</link>.</paragraph>
<paragraph role="heading" id="hd_id3152460" xml-lang="en-US" level="2" l10n="U" oldref="6">Syntax:</paragraph>
<paragraph role="code" id="par_id3145365" xml-lang="en-US" l10n="U" oldref="7">Seek (FileNumber)</paragraph>
<paragraph role="heading" id="hd_id3148575" xml-lang="en-US" level="2" l10n="U" oldref="8">Return value:</paragraph>
<paragraph role="paragraph" id="par_id3159156" xml-lang="en-US" l10n="U" oldref="9">Long</paragraph>
<paragraph role="heading" id="hd_id3149665" xml-lang="en-US" level="2" l10n="U" oldref="10">Parameters:</paragraph>
<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US" l10n="U" oldref="11">
<emph>FileNumber:</emph> Returns the file number determined by the Open statement.</paragraph>
<paragraph role="heading" id="hd_id3150011" xml-lang="en-US" level="2" l10n="U" oldref="12">Example:</paragraph>
<paragraph role="code" id="par_id3153877" xml-lang="en-US" l10n="U" oldref="13">Sub ExampleSeek</paragraph>
<paragraph role="code" id="par_id3150417" xml-lang="en-US" l10n="U" oldref="14">Dim i As Integer</paragraph>
<paragraph role="code" id="par_id3156284" xml-lang="en-US" l10n="U" oldref="15">Dim iNumber As Integer</paragraph>
<paragraph role="code" id="par_id3153157" xml-lang="en-US" l10n="U" oldref="16">iNumber = Freefile</paragraph>
<paragraph role="code" id="par_id3149413" xml-lang="en-US" l10n="U" oldref="17">Open "c:\Data.txt" For Random As #iNumber</paragraph>
<paragraph role="code" id="par_id3155602" xml-lang="en-US" l10n="U" oldref="18">For i = 1 To 10</paragraph>
<paragraph role="code" id="par_id3149400" xml-lang="en-US" l10n="U" oldref="19">PUT #iNumber, , i</paragraph>
<paragraph role="code" id="par_id3149123" xml-lang="en-US" l10n="U" oldref="20">Next i</paragraph>
<paragraph role="code" id="par_id3156275" xml-lang="en-US" l10n="U" oldref="21">Seek #iNumber, 2</paragraph>
<paragraph role="code" id="par_id3154479" xml-lang="en-US" l10n="U" oldref="22">Get #1, , i</paragraph>
<paragraph role="code" id="par_id3148405" xml-lang="en-US" l10n="U" oldref="23">Print "Date: "; i;" Next Record: "; Seek(iNumber)</paragraph>
<paragraph role="code" id="par_id3149020" xml-lang="en-US" l10n="U" oldref="24">end sub</paragraph>
</body>
</helpdocument>