Hi all.
Is there a way to open a File for both input and output at the same time without opening it for Random access? I don't want to use Random access because the length of the lines of data are not consistent.
Thanks.
Printable View
Hi all.
Is there a way to open a File for both input and output at the same time without opening it for Random access? I don't want to use Random access because the length of the lines of data are not consistent.
Thanks.
You can open it in Binary! It's always the fastest way to read and write files.
Sure open the file in binary mode.
Good luck!Code:Open "c:\myfile.dat" For Binary Access Read Write As #1
kedaman and Joacim. :)
All the best.