CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Arjay

Search: Search took 0.24 seconds.

  1. Re: A question regarding passing a variable from CView to CDocument

    You can store boolean values by storing a bool (i.e. 'bool', not 'bool*'). Again, if you serialize the document to a file, you can't store pointers. It doesn't matter if you are using the heap or...
  2. Re: A question regarding passing a variable from CView to CDocument

    Does storing pointers (e.g. bool*) to a document make sense anyway? What happens when you open the document from a different process instance? Do you expect those saved pointer values to be valid...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured