While Not EOF(hfile)
Line Input #hfile, buffer
Data() = Split(buffer, ",")
i = i + 1
With fghStudentInfo
.TextMatrix(i, 1) = Data(0)
End With
Wend
i'm new to VB.
can someone help me to understand the command?
i want to load the data from .csv to my vb interface.
when i use the code, it only insert the first column from my .csv file data. eg: a112233, batch, course1, course2 . In this case, it is a112233.
how can i make the next column for eg batch, course1, course2, to be loaded in the next column after a112233 in my interface ?
pls help. thank u so much !