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

Search:

Type: Posts; User: VictorN

Search: Search took 2.04 seconds.

  1. Re: How Do I Still Use Document/View Architecture for This Application?

    Agree! :thumb:
  2. Re: How Do I Still Use Document/View Architecture for This Application?

    I do NOT call CDocument::OnOpenDocument() if I use my own mechanism instead of CArchive.
    Besides, I usually use MDI rather than SDI.
  3. Re: How Do I Still Use Document/View Architecture for This Application?

    I usally implemented my own reading in CDocument::OnOpenDocument override
  4. Re: How Do I Still Use Document/View Architecture for This Application?

    Well, I never used CArchive and never had any problem to live without it.
    For text/binary files i usualy use CStdioFile/CFile classes or just a plain API (CreateFile/ReadFile/WriteFile).
    In case of...
  5. Re: How Do I Still Use Document/View Architecture for This Application?

    The simplest way - using Notepad. Open text file, then Save As... and select the Encoding Unicode from the combobox.
  6. Re: How Do I Still Use Document/View Architecture for This Application?

    But there was very clear explained that that the reason was:
    So either use CStringA or use a unicode text file.
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured