Jun 14, 2002 #1 dds82 Programmer Joined Jun 5, 2002 Messages 251 Location US I have a CPropertySheet in wizard mode. How do I get rid of the "Help" button? Thanks.
Jun 14, 2002 #2 programsecrets Programmer Joined Dec 13, 2001 Messages 245 Location US Remove the PSH_WIZARDCONTEXTHELP flag from the dwFlags member of the PROPSHEETHEADER structure prior to creating the property sheet(s). Upvote 0 Downvote
Remove the PSH_WIZARDCONTEXTHELP flag from the dwFlags member of the PROPSHEETHEADER structure prior to creating the property sheet(s).
Jun 14, 2002 #3 programsecrets Programmer Joined Dec 13, 2001 Messages 245 Location US An easy way to achieve this is to replace the default CPropertySheet::Create() call with something like this: Code: BOOL bResult = MyPropertySheet.Create(NULL, (DWORD)(WS_SYSMENU | WS_POPUP | WS_CAPTION | DS_MODALFRAME | WS_VISIBLE), 0); Upvote 0 Downvote
An easy way to achieve this is to replace the default CPropertySheet::Create() call with something like this: Code: BOOL bResult = MyPropertySheet.Create(NULL, (DWORD)(WS_SYSMENU | WS_POPUP | WS_CAPTION | DS_MODALFRAME | WS_VISIBLE), 0);