I have a comma delimited csv file.
I can read the file using memoread().
cText := memoRead(cfile)
I can extract a line using extractLine(cText,@variable)
I can change the line: cline := stuff(cLine,0,0,"0,"). I added a new comma.
but what I can't do is insert the changed line back into the csv file.
Help is appreciated.