FIX: ClassWizard Generates Incorrect UDN_DELTAPOS HandlerLast reviewed: September 18, 1997Article ID: Q133276 |
2.10 2.20
WINDOWS NT
kbother kbbuglist kbfixlist
The information in this article applies to: - The ClassWizard included with: Microsoft Visual C++, 32-bit Edition, version 2.1, 2.2
SYMPTOMSClassWizard creates incorrect code for a handler for the UDN_DELTAPOS notification message of the CSpinButtonCtrl common control.
RESOLUTIONThe generated handler function will look like this (assuming that the CSpinButtonCtrl is in a dialog):
void CAboutDlg::OnDeltaposSpin1(NMHDR* pNMHDR, LRESULT* pResult) { NM_UPDOWN; // TODO: Add your control notification handler code here *pResult = 0; }Modify the code to look like this:
void CAboutDlg::OnDeltaposSpin1(NMHDR* pNMHDR, LRESULT* pResult) { NM_UPDOWN* pUpDown = (NM_UPDOWN*)pNMHDR; // TODO: Add your control notification handler code here *pResult = 0; }By typecasting the pointer to the NMHDR structure, you can access additional data that is passed after the NMHDR.
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.0.
REFERENCESFor more information about the CSpinButtonCtrl and the up down common control, please see the Class Library Reference in Books Online and the Win32 Software Development Kit (SDK) documentation.
|
Additional reference words: 2.10 3.10 ClassWizard
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |