How can I override CPropertySheet::RemovePage(int nPage) in a derived class?
-
I've derived my propertysheet classes from a class, which has implemented RemovePage as: void cdxCDynamicPropSheet::RemovePage( cdxCDynamicPropPage & rPage ) { ASSERT(rPage.m_pSheet == this); rPage.m_pSheet = NULL; } but there's no implementation for CPropertySheet::RemovePage(int nPage) I'd like to know how I can implement that.
-
I've derived my propertysheet classes from a class, which has implemented RemovePage as: void cdxCDynamicPropSheet::RemovePage( cdxCDynamicPropPage & rPage ) { ASSERT(rPage.m_pSheet == this); rPage.m_pSheet = NULL; } but there's no implementation for CPropertySheet::RemovePage(int nPage) I'd like to know how I can implement that.
mfc_surfer wrote: but there's no implementation for CPropertySheet::RemovePage(int nPage) Have you looked in DLGPROP.CPP? It's implemented there.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?