Click to See Complete Forum and Search --> : Serialisation


Vijay Khopade
October 18th, 1999, 09:26 AM
In a Console application(with MFC support) How do we access a file created by
MFC framework (created using Serialize function ).As in console application we don't have framework class such as document with which we can deserialised.
Second is if we want to store a file using Carchive object, How do we do that?
As only one Archive object can active with a file. While storing file MFC passes
attached CArchive object & because of this we can't attach new Archive object.
What should be the solution?

Jack Shainsky
October 18th, 1999, 09:50 AM
You can use MFC in console application too. So, you can derive a class from CObject and serialize it as in usual MFC program.

Jack.