How to make a CPropertySheet's help button invisible?
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
There's no help files in my project. And I want to make the help button invisible,or get rid of it. How can I do? Thanks. Hi guys. I'm a very fat man. Do you like fat men?
-
There's no help files in my project. And I want to make the help button invisible,or get rid of it. How can I do? Thanks. Hi guys. I'm a very fat man. Do you like fat men?
See the MSDN article Q141039. It's about the Apply button but it does mention that any of the buttons can be hidden in the same fashion. You can deactivate the Help button capability by modifying m_psh in the property sheet object as follows: mySheet.m_psh.dwFlags &= ~(PSH_HASHELP);