Disable Minimize Button runtime
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
How can I enable-disable, show-hide system buttons (minimize, close etc.) runtime (buttons in the top right corner of dialogs)? Thanks in advance:omg:
-
How can I enable-disable, show-hide system buttons (minimize, close etc.) runtime (buttons in the top right corner of dialogs)? Thanks in advance:omg:
-
You can write this: hMenu=GetSystemMenu(hDlg,TRUE); EnableMenuItem ( hMenu, SC_CLOSE, MF_BYCOMMAND | MF_DISBALED);
I have not the menu! I want get pointer to the buttons into the caption of Dialog (Help and Close)!:omg: