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 is message Testing ?
How do you change the properties for a tree view control that is part of the CTreeView class?
Psychic Window Technique
How to convert a CString variable to char* or LPTSTR?
What is the initial function to be called in MFC and what it will do
Explain about MDI and CMultiDocTemplate ?
What is the difference between the SDI and MDI
What is the use of UpdateData funciton ?
What are the special requirements for dialog box resources used in a form view?
Why not virtual functions to handle messages?
What is the use of CCmdTarget ?
what if we provide two message handler for same message ?