5
« on: May 08, 2021, 12:56:03 am »
Hello all you QB64 hackers! It's 12:40am and I should have saved this and gone to bed. But as you well know, you have to write code while the fire is hot, so to speak!
I have a single .csv file with 168 rows down and 4 columns across: All cells are variable-length text.
I can DIM Array$(168,4) and then OPEN FILENAME$ FOR INPUT as 1 - and read the entire .csv file into Array$(168,4) - this works OK.
Here is my problem (and most likely it has a simple solution):
I would like be able to: open the .csv file and WRITE just one record (4 variable-length text columns) back to that same .csv file, and then close the file.
Side note: the .csv file must be able to be open (shared) by other users at the same time.
Any suggestions? Thanks in advance,
- Spambucket (BASIC codeing since '77)