Ayuda de LibreOffice 7.1
Lee un registro desde un archivo relativo o una secuencia de bytes desde un archivo binario a una variable.
Consulte también: Instrucción PUT
Get [#]fileNum, [recordNum|filePos], variable
fileNum: Any integer expression that determines the file number.
recordNum: For files opened in Random mode, recordNum is the number of the record that you want to read.
For files opened in Binary mode, filePos is the byte position in the file where the reading starts.
If recordNum and filePos are omitted, the current position or the current data record of the file is used.
variable: Name of the variable to be read. With the exception of object variables, you can use any variable type.
Sub ExampleRandomAccess
Dim iNumber As Integer
Dim sText As Variant ' Debe ser un variant
Dim aFile As String
aFile = "c:\data.txt"
iNumber = Freefile
Open aFile For Random As #iNumber Len=32
Seek #iNumero,1 ' Posición al principio
Put #iNumber,, "Esta es la primera línea de texto" ' Rellenar la línea con texto
Print #iNumero, "Esta es la segunda línea de texto"
Print #iNumero, "Esta es la tercera línea de texto"
Seek #iNumber,2
Get #iNumber,,sText
Print sText
Close #iNumber
iNumber = Freefile
Open aFile For Random As #iNumber Len=32
Get #iNumber,2,sText
Put #iNumero,,"Esto es un texto nuevo"
Get #iNumber,1,sText
Get #iNumber,2,sText
Put #iNumero,20,"Este es el texto del registro 20"
Print Lof(#iNumber)
Close #iNumber
End Sub