Visual C++ README.WRI Part 7-Foundation Class Library (2 of 2)Last reviewed: July 17, 1997Article ID: Q97544 |
1.00
MS-DOS
kbreadme
The information in this article applies to:
SUMMARYThe text below presents information in Part 7 of the README.WRI file distributed with Microsoft Visual C++ version 1.0. Setup installs README.WRI in the MSVC\HELP directory.
MORE INFORMATION
Class Library User's Guide
Page 177, Enhance Scribble's Print PreviewIn the code listing for the function CScribView::OnPreparePrinting(), the parameter list and the last line of the function are incorrect. The function should read as follows:
BOOL CScribView::OnPreparePrinting( CPrintInfo* pInfo ) { pInfo->SetMaxPage(2); // the document is two pages long: // the first page is the title page // the second page is the drawing > BOOL bRet = DoPreparePrinting(pInfo); // default preparation > pInfo->m_nNumPreviewPages = 2; // Preview 2 pages at a time > // Set this value after calling DoPreparePrinting to > // override value read from .INI file > return bRet; } Page 191, Adding Help After the FactIn the procedure labeled "To copy help-related files to MYSCRIB," make the following changes:
Page 196, The Pen Menu ScreenIn the Section entitled "The Pen Menu Screen," the reference to AFXCORE.RTF should be to PEN.RTF, and the window captions in figures 10.3, 10.4, and 10.5 should read "PEN.RTF". The figure caption under figure 10.3 should also refer to PEN.RTF rather than AFXCORE.RTF, and the references to AFXCORE.RTF in the paragraphs between figures 10.3 and 10.4 should also refer to PEN.RTF instead.
|
Additional reference words: 1.00 CLUG Tutorial
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |