I am familar with some of the opentextfile properties, but the problem is that the either pertain to opening a file to "read" or "write", but properties that I need to use either are one or the other and I need both.
I need to open a file, find the last character, go to the next line and write two lines to the file. There is a way to find the last character in the file, but appears to only be usable when opening the file as "read", but I need to write. So do I have to collect that location into a variable, then use that variable to open the file again to write, and go to that position?
I need to open a file, find the last character, go to the next line and write two lines to the file. There is a way to find the last character in the file, but appears to only be usable when opening the file as "read", but I need to write. So do I have to collect that location into a variable, then use that variable to open the file again to write, and go to that position?