Thread: File Functions
View Single Post
  #2 (permalink)  
Old 07-11-2006, 04:47 AM
cockeyedcowboy's Avatar
cockeyedcowboy cockeyedcowboy is offline
Senior Member
 
Join Date: Nov 2005
Posts: 486
cockeyedcowboy is on a distinguished road
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
Reply With Quote