Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
my problem is: I have a file, where I write some data(for example name, description, date). and I have to delete one record. how do I have to do this?
Using C or C++ functions? How are u writing to the file Anyway consider using fseek or CFile:Seek and be sure u dont open in append mode
I am writing like this: "ses" is my serializable class I want to save "name" and "date" ses.Add(name); ses.Add(date); and after I am writing into the file. mode "write".