Quote:
|
Originally Posted by intelligent_14
How can Add data to a closed CSV file, without deleting it's last writed Data?
i use: int handle = FileOpen(FileName,FILE_CSV|FILE_WRITE,";"); but this syntax delete file data 
|
Try adding the FILE_READ statment to it as in:
int handle = FileOpen( FileName, FILE_CSV | FILE_READ | FILE_WRITE, ";" );
CockeyedCowboy