FIX: Assertion Using Multiple %1 (or %2) in AfxFormatString1Last reviewed: September 18, 1997Article ID: Q116212 |
1.00 1.50 | 1.00
WINDOWS | WINDOWS NTkbprg kbfixlist kbbuglist The information in this article applies to:
SYMPTOMSWhen you use the AfxFormatString1() or AfxFormatString2() function, with more than one %1 or %2 parameter in the template string, the following assertion occurs:
File strcore1.cpp, Line 269, Assertion Failed! CAUSEThese functions do not allocate enough memory for multiple parameters to be used. However, in the case of AfxFormatString2(), two parameters may be used (one %1 and one %2) successfully. It is the use of two %1's or two %2's that causes the problem.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem has been corrected in MFC 3.0, included with Visual C++ version 2.0.
MORE INFORMATIONYou can reproduce the problem by using the following steps:
Sample Code
/* Compile options needed: Default MFC-Windows project options */ ///////////////////////////////////////////////////////////////////// // main cpp file ///////////////////////////////////////////////////////////////////// #include <afxwin.h> // Provide access to MFC #include "resource.h" // App Studio puts resource ID's here // myWinApp hooks us into the MFC application processing class myWinApp : CWinApp { public: BOOL InitInstance(); }; BOOL myWinApp::InitInstance() { CString theOutputString; // This works fine AfxFormatString1( theOutputString, IDS_THETEMPLATE, "filename.ext" ); TRACE("theOutputString=%s\n", theOutputString); // Comment this out to avoid Assertion AfxFormatString1( theOutputString, IDS_THENEWTEMPLATE, "filename.ext"); TRACE("theOutputString=%s.\n", theOutputString); return FALSE; // Terminate the program } myWinApp theApp; ///////////////////////////////////////////////////////////////////// |
Additional reference words: 1.00 1.50 2.00 2.10 2.50 AfxFormatString2
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |