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?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.