The information in this article applies to:
SYMPTOMSForcing a window to scroll to an absolute location by sending it a WM_HSCROLL or WM_VSCROLL message with the SB_THUMBPOSITION or SB_THUMBTRACK scrolling codes might cause an assertion. The assertion is in Wincore.cpp file on line 1938. CAUSE
The assertion tries to ensure that for the current message, the nTrackPos
member of the SCROLLINFO structure retrieved from a call to ::GetScrollInfo
is the same as the thumb position specified in the message. The value of
this variable is retrieved by calling ::GetScrollInfo, and it reflects the
current scroll thumb position only when the user is dragging the thumb. In
the case of a programmatically sent scroll message with the
SB_THUMBPOSITION code, this value is not valid. Because this value is
indeterminate, it will not likely match the thumb position specified in the
message, and the assertion will fail. RESOLUTION
If the assertion is ignored, you cannot rely on the position value passed
to the WM_xSCROLL handler and must make a call to GetCurrentMessage() to
get the values specified in the message instead. If this is done properly,
then the assertion can be safely ignored.
For more information on this, please refer to the sample code included in
this article.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem was corrected in Visual C++, 32-bit Edition, version 4.1. MORE INFORMATIONThis assertion is part of some new code added in MFC 4.0 to accomplish 32 bit scrolling and exists in the function CWnd::OnWndMsg. Sample Code to Reproduce and Resolve the problemThe following code demonstrates the problem: NOTE: CMyView is derived from CEditView. However the same technique works
for any CWnd derived class. Remember, the same problem also occurs for
scroll messages programmatically sent with the SB_THUMBTRACK code.
Additional query words: kbVC400bug 4.00 Windows 95 vcrel 1948 vcfixlist410
Keywords : kbMFC KbUIDesign kbVC |
Last Reviewed: July 22, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |