The Wayback Machine - https://web.archive.org/web/20100724060808/http://www.codeguru.com:80/cpp/w-d/doc_view/

    Doc/View

    Multiple Views Layout Without a Splitter

    Learn how to show multiple views in a frame window without using a splitter.

    Getting Past the 2 Gb File Limit

    Take a closer look at the 2 Gb limit that we are plagued with in different languages, and how to get around them.

    [Updated] A Deterministic Method of Determining a Document's Modified State

    Determine when a document has been modified. In the particular case of word processors, most tend to have a "dirty" flag that is set when a user types. This article demonstrates a smarter "dirty" flag that uses probabilistic methods.

    Animate an Icon on the Taskbar when the Application Is Minimized

    Learn how to loop through an icon sequence, simulating animation, while your application is minimized.

    Colorizing the Scroll Bars of Your Application's Window (not yet reviewed)

    Learn how to colorize the scroll bars of your application's Window.

    Puzzle, a Game with the MFC Doc/View Architecture (SDI/MDI)

    Learn how to display a menu with thumbnails and several other windows, move and manage the pieces of a puzzle with a linked list, and then show them without flicker.

    Working Around a VS .NET 2003 DDE Bug

    An MDI or SDI application supporting DDE, created by VS 7.1 (.NET 2003), fails to open a document using DDE (Dynamic Data Exchange). Learn an easy way to rectify this problem.

    Setting Extended Styles of Controls, Dialogs, Dialog Bars, and Property Pages at Runtime

    Set extended styles of controls, dialogs, dialog bars and property pages at runtime for DIALOG and DIALOGEX resources.

    How to Determine Whether a Printer Supports Color

    Learn how to determine whether a printer supports color printing.

    Multi-Page Interface

    Create a complex user interface with many views, tabs, and splitters.

    Look Closer with QZoomView

    Build an extended CScrollView with added zooming capabilities. (The article and demo project/source code file were updated.)

    Creating a Multithreaded SDI Application

    How to create an application with multiple SDI windows (such as the new MS Word) by using the MFC framework with multithreading. (The article, demo, and source code were updated.

    Non-Resizable, Non-Movable Window

    If you want to work with nonresizable, nonmovable windows, insert this code into your project (SDI or MDI applications). (The article was updated.)

    Changing the Default Background Color in an SDI Application

    SDI applications created with MFC comes with a default background color of white. Learn how to implement any color you desire.

    Zero or One Document Interface (ZODI)

    How to create a single-document application by using a multi-document interface (MDI). You may have zero or one documents at a time.

    Multiple File Selection Without Any Extra Code

    See how to select multiple files from the Open File dialog without creating a new class.

    Dynamically Create Different Views for SDI Projects

    SDI Projects have one View associated with one document. This article lets you use more than one view dynamically.

    CFormView Class with Custom Background Color

    CFormView Class with Custom Background Color

    Automatic Doc/View File Encryption/Decryption

    Learn how to re-derive a CDocument class to gain automatic file encryption and decryption that includes backward compatibility of existing files. (Encryption applicable to other areas as well.)

    Multiple Browser Windows in an App.

    Open multiple sites in one window.

    Dialog Switcher Using a Tree Control

    So you want to use the new style of dialog where you pick an option from a tree on the left and the appropriate form shows up on the right. This article shows you were to start and how to accomplish this!

    How to use a personnal New Document Method

    This is a simple way to use a personnal dialog that appears when your application uses more than one document template and you click the 'new' button, or during the start of the appliacation.

    Dynamic Data Exchange (DDX) Internals

    Takes you into the internals of Dynamic Data Exchange in terms of what it is, how it works and best of all, how we can improve its functionality and use.

    Saving Window Placement Information

    Shows the do's and don'ts of saving window placement information

    Templatizing Your MFC Message Maps

    Innovative way of declaring message maps using templates. Much cleaner than current two-step MFC way!