<p class="Paragraph">Umístění: Parametr Umístění je u souborů otevřených v režimu Random číslem záznamu, který se má načíst.</p>
<p class="Paragraph">Parametr Umístění je u souborů otevřených v režimu Binary umístěním v souboru, ve kterém začíná čtení.</p>
<p class="Paragraph">Je-li parametr Umístění vynechán, použije se aktuální umístění nebo aktuální datový záznam.</p>
<p class="Paragraph">Proměnná: Název proměnné, která se má načíst. Kromě objektové proměnné lze použít jakýkoli typ proměnné.</p>
<p class="P2">Příklad:</p>
<p class="PropText">Sub ExampleRandomAccess</p>
<p class="PropText">Dim iNumber As Integer</p>
<p class="PropText">Dim sText As Variant REM Must be a variant</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 Random As #iNumber Len=32</p>
<p class="PropText">Seek #iNumber,1 <text:s text:c="2" xmlns:text="http://openoffice.org/2000/text"/>REM Position at beginning</p>
<p class="PropText">Put #iNumber,, "This is the first line of text" <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>REM Fill line with text</p>
<p class="PropText">Put #iNumber,, "This is the second line of text"</p>
<p class="PropText">Put #iNumber,, "This is the third line of text"</p>
<p class="PropText">Seek #iNumber,2</p>
<p class="PropText">Get #iNumber,,sText</p>
<p class="PropText">Print sText</p>
<p class="PropText">Close #iNumber</p>
<p class="PropText"/>
<p class="PropText">iNumber = Freefile</p>
<p class="PropText">Open aFile For Random As #iNumber Len=32</p>
<p class="PropText">Get #iNumber,2,sText</p>
<p class="PropText">Put #iNumber,,"This is a new text"</p>
<p class="PropText">Get #iNumber,1,sText</p>
<p class="PropText">Get #iNumber,2,sText</p>
<p class="PropText">Put #iNumber,20,"This is the text in record 20"</p>