Hi Fello Tek-Tipions!
I want to read a file into an array. OK - that is done OK.
I use this as my code:
Open For Input As #1
Dim stringVar$
stringVar = Input(Lof(1), 1)
Dim a
a = Split(stringVar, vbCrLf)
but how can i then see how many lines of text there are in the arrary?
Thanx in advance
I want to read a file into an array. OK - that is done OK.
I use this as my code:
Open For Input As #1
Dim stringVar$
stringVar = Input(Lof(1), 1)
Dim a
a = Split(stringVar, vbCrLf)
but how can i then see how many lines of text there are in the arrary?
Thanx in advance