Hello there
sorry for the multiple post for some reason i can not
see it, or delete it.
any way my quesion is
if a text file is stored the following way
Bert
123
Mark
456
I can access it as follows
.....
Do while sr.Peek <>-1
name = sr.Readline 'sr is the IO stream reader
phone = sr.Readline
...
Loop
How about if the file is stored as follows?
"Bert",123
"Mark",456
Thank u in advance


Reply With Quote