- Код: Выделить всё
Sub LoadFile (ByRef arr() as String)
Dim FileHandler as Integer
Dim i,j as Integer
Dim a,b,c as Integer
Dim tmpS as String
ReDim arr(0,0) as String
FileHandler = FreeFile
Open "file.txt" for input as FileHandler
do whiдe not(EOF(FileHandler))
input #FileHandler, tmpS
a = instr(tmpS,"(")
b = instr(tmps, ",")
c = instr(tmps, ")")
i = val(mid$(tmps,a,a-b) )
j = val(mid$(tmps,b,b-c) )
tmpS = trim$(Right$(tmpS, len(tmpS) - InStr(tmpS, "=")))
tmps = mid$(tmps,2,len(tmps)-2)
redim preserve arr(1 to i,j) as string
arr(i,j) = tmps
loop
Close FileHandler
End Sub
Если я в Form_load прописываю LoadFile:
- Код: Выделить всё
Private Sub Form_Load()
LoadFile
End Sub
Он пишет ошибку "Argument not optional".
С чем это связано? Заранее благодарен за помощь!