Article ID: 131992
Article Last Modified on 11/21/2006
int CMyPropertySheet::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
// Set for Scrolling Tabs style
EnableStackedTabs(FALSE);
// Call the base class
if (CPropertySheet::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
return 0;
}
Be aware that CPropertySheet::EnableStackedTabs() is declared in the
"Implementation" portion of the CPropertySheet class declaration (for
Visual C++ version 4.0, see AFXDLGS.H). It is entirely likely that this
function will change with the next release of MFC. If at all possible,
do not design your MFC application to depend upon any object's methods
or data that are declared with an Implementation section.
Additional query words: 1.52 2.00 2.10 4.00
Keywords: kbcode kbhowto kbpropsheet kbuidesign KB131992