I have created a few applications in MFC.
But I want to start saving the contents of them to files(just like word,guitar pro or paint).
I tried serialization provided by MFC but I didn't like it that much because I couldn't check anything that was saved at all.
So,I wrote my own xml saving class,using which I can both read an write.
Now,where do I put the saving code and the loading code in my project?
(Like,How do I know when a file(created by my application) is opened?)
How do you do the saving part of an application in MFC(tell me where you put the code)?
Please help me out.