Article ID: 140586
Article Last Modified on 11/21/2006
// This code shows how to resize a modeless CPropertySheet to add a button.
// CMySheet is derived from CPropertySheet
BEGIN_MESSAGE_MAP(CMySheet, CPropertySheet)
//{{AFX_MSG_MAP(CMySheet)
//}}AFX_MSG_MAP
ON_COMMAND(IDC_MYBUTTON, OnMyButton)
END_MESSAGE_MAP()
BOOL CMySheet::OnInitDialog()
{
CPropertySheet::OnInitDialog();
RECT rc;
GetWindowRect (&rc);
// Increase the height of the CPropertySheet by 30
rc.bottom += 30;
// Resize the CPropertySheet
MoveWindow (rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top);
// Convert to client coordinates
ScreenToClient (&rc);
// m_Button is of type CButton and is a member of CMySheet
m_Button.Create ("&MyButton", WS_CHILD | WS_VISIBLE | WS_TABSTOP,
CRect (5, rc.bottom-30, 80, rc.bottom-5),
this, IDC_MYBUTTON);
return TRUE;
}
// Handler for button click of IDC_MYBUTTON
void CMySheet::OnMyButton ()
{
AfxMessageBox ("MyButton was clicked!");
}
Additional query words: kbinf 4.00
Keywords: kbcode kbhowto kbpropsheet kbuidesign KB140586