Hello,
Here is my code:
struct contactEntry
{
CString name,phoneNumber;
};
vector<contactEntry> contactList;
I like to write the total contactList to a file and read it back. Before writting I like to make the file empty. how can i do this.
jamil