DOC: MFC CHKBOOK Sample Uses Incorrect Base Class |
Q105117
1.00 WINDOWS kbprg kbdocerr
The CHKBOOK sample for the Microsoft Foundation Classes (MFC) uses the
incorrect document base class in the IMPLEMENT_DYNCREATE and
BEGIN_MESSAGE_MAP macros that are in CHECKDOC.CPP. This does not cause
any errors in this application because the class used is part of the
inheritance tree and no conflicts result in this application. However,
errors of this type have the potential to cause run-time errors and
should be avoided.
The following lines from CHECKDOC.CPP are in error:
IMPLEMENT_DYNCREATE(CChkBookDoc, CDocument)
BEGIN_MESSAGE_MAP(CChkBookDoc, CDocument)
IMPLEMENT_DYNCREATE(CChkBookDoc, CFixedLenRecDoc)
BEGIN_MESSAGE_MAP(CChkBookDoc, CFixedLenRecDoc)
The CHKBOOK sample is installed in the \MSVC\MFC\SAMPLES\CHKBOOK
directory by default.
The inheritance tree for CChkBookDoc looks like this:
CDocument | - CFixedLenRecDoc | - CChkBookDoc
Additional query words: 1.00 1.50 2.00
Keywords : kbdocfix kb16bitonly kbDocView kbMFC kbVC100bug kbVC150fix kbSampleProd kbDSupport kbGrpDSMFCATL
Issue type :
Technology : kbAudDeveloper kbMFC
|
Last Reviewed: May 8, 2001 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |