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 |
1)How to load an icon on a button as Dynamically ?
Explain about MDI and CMultiDocTemplate ?
Can you explaing the relashionship between document,frame and view ?
What is thread & process?
Do you have an idea about MFC?
Difference between Debug and Release versions?
What is the difference between the ASSERT and VERIFY macros?
What is Multithreading
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?
is there any class which is not derived from Cobject
What is the difference between GetMessage and PeekMessage ?
1)How to change a text of a button as Dynamically?