The information in this article applies to:
SYMPTOMSTo disallow activation of a CPropertyPage, you are supposed to be able to return FALSE from OnSetActive(). This causes the next page to be activated instead of the one the user clicked. This works fine as long as there is a next page and the next page returns TRUE from OnSetActive(). If the next page is not available, the tab you clicked will be activated but the page still points to the previous one. In other words, the tab that is activated doesn't match the page. Furthermore, the OnSetActive() function is called an additional ten times. CAUSEReturning FALSE from OnSetActive() prompts MFC to return a -1 from PSN_SETACTIVE. The PropertySheet control doesn't handle this correctly when the next tab is not available. RESOLUTIONIn OnSetActive(), post a message of PSM_SETCURSEL to activate a different page. Then return TRUE. Sample Code
STATUSThis behavior is by design. Additional query words: 4.00 CPropertySheet CPropertyPage PSN_SETACTIVE OnSetActive FALSE
Keywords : kbcode kbMFC KbUIDesign kbVC |
Last Reviewed: January 25, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |