LibreOffice 7.1 Help
འབྲེལ་བའི་ཡིག་སྣོད་ནང་ལས་དྲན་ཐོ་ ཡང་ན་འགྱུར་ཅན་ནང་ལུ་ཟུང་ལྡན་ཡིག་སྣོད་ལས་བཱའིཊིས་གི་འབྱུང་རིམ་ལྷགཔ་ཨིན།
བལྟ་ཡང་: གསལ་བཤད བཙུགས།
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 aFile As String
aFile = "c:\data.txt"
iNumber = Freefile
Open aFile For Random As #iNumber Len=32
འཚོལ#ཨའི་ཨང་ ༡ རིམ་གནས་ས་འགོ་བཙུགས་ད་ལུ།
#ཨའི་ཨང་བཙུགས་ "This is the first line of text" རིམ་ ཚིག་ཡིག་གཅིག་ཁར་གྱལ་བཀང་།
བཙུགས#ཨའི་ཨང་ "This is the second line of text"
བཙུགས #ཨའི་ཨང་ "This is the third line of text"
Seek #iNumber,2
Get #iNumber,,sText
Print sText
Close #iNumber
iNumber = Freefile
Open aFile For Random As #iNumber Len=32
Get #iNumber,2,sText
བཙུགས #ཨའི་ཨང་"This is a new text"
Get #iNumber,1,sText
Get #iNumber,2,sText
བཙུགས#ཨའི་ཨང་ ༢༠ "This is the text in record 20"
Print Lof(#iNumber)
Close #iNumber
End Sub