CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Serialisation

  1. #1
    Join Date
    Oct 1999
    Posts
    14

    Serialisation

    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?


  2. #2
    Join Date
    May 1999
    Location
    Jerusalem, Israel
    Posts
    251

    Re: Serialisation

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured