I am working with files, and am using the file system object to access a text file.

Basically i have to create a text file and use the file for transactions in the form of strings.
each line means a transaction.

for ex
111,xxx,1-2-11 ----1 transaction
222,yyy,3-44 -----2 transaction

i am able to write multiple transactions in the txt file using the writeline method.

But for reading multiple records i am using readline method. i am not able to get the pointer to beginning of the next line after reading the first line. So each time i read the txt file i am able to read only the first line.

Can any one help me as to how to get the pointer to the beginning of the next line so i will be able to read multiple lines from the txt file.

Thanks

Monte