In many cases, is usefull to have in one page of propery sheet more controls. But if the area of page is not enough, you have to insert some scroll bars into page. To make this simple you can do the followings:
Creating one CFormView
BOOL CMyFormView::Create(CWnd *pParent)
{
CRect rect; pParent->GetClientRect(rect);
return CFormView::Create(NULL, NULL, WS_CHILD | WS_VISIBLE, rect, pParent, 0, NULL);
}
Adding the new member of CMyFormView type to one of CPropertyPage
If something is missing or wrong, feel free to ask me at: mihai_f@hotmail.com