1)To Remove WS_MINIMIZEBOX in a Frame ?
Answer / 106743013743
Hi,
// In, PreCreateWindow(), to Hide
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// below,comment the code
cs.style = WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE
| WS_THICKFRAME | WS_MINIMIZEBOX |
WS_MAXIMIZE | WS_SYSMENU;
}
try it, I hope u can success
Code by Ctharam
| Is This Answer Correct ? | 0 Yes | 0 No |
What MFC base classes provide support for ActiveX controls?
1)How to change the size of a button at run time ?
What is Multithreading
1)How to load an icon on a button as Dynamically ?
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
1)To Remove WS_MINIMIZEBOX in a Frame ?
How you find memory leaks?
how does conditionally close the Dialog Box ?
How do you change the properties for a tree view control that is part of the CTreeView class?
How many types of combo box are their
2 Answers Aaditya Info Solutions, E Logic,
What is a message map?
1)how to Display the File Dialog Box, in MFC ?