Private tr As TextReader
tr.Initialize(File.OpenInput(File.DirAssets, "myfile.txt"))
strLines = tr.ReadLine
FOR SS=1 TO 7
strLines = tr.ReadLine
....
....
NEXT SS
tr.Close
[code]
Now in B4I how should i do?
Private tr As TextReader
tr.Initialize(File.OpenInput(File.DirAssets, "myfile.txt"))
strLines = tr.ReadLine
FOR SS=1 TO 7
strLines = tr.ReadLine
....
....
NEXT SS
tr.Close
[code]
Now in B4I how should i do?