You can... In your CPropertySheet derived class add the following to the constructor:
m_psh.dwFlags |= PSH_USEHICON;
m_psh.hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
This will add the icon for the "System Menu". Then, Add a message handler function for "OnCreate", and add this:
ModifyStyle(0, WS_MINIMIZEBOX|WS_SYSMENU);
This will add the "Minimize" button to the Non-Client area of the dialog. If you don't want "Maximize". You can add the following to the "OnInitDialog" function in your CPropertySheet class:
CMenu *pSysMenu = GetSystemMenu(FALSE);
ASSERT(pSysMenu != NULL);
VERIFY(pSysMenu->RemoveMenu(SC_MAXIMIZE, MF_BYCOMMAND));
I've done this in a project, and it works. :) Good Luck, Frank