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 |
Explain the flow of SDI application?
What function is used to disable a control at runtime?
what if we provide two message handler for same message ?
Tell me about different kinds of synchranization objects ?
How many types of combo box are their
2 Answers Aaditya Info Solutions, E Logic,
if i modified data in 1 view how does the other view knows
What is the difference between the ASSERT and VERIFY macros?
What view class enables you to use an edit control as a view?
I have 2 threads. One thread prints odd numbers and the second thread prints even numbers. Now, I have to execute the threads alternatively so that i can output 1,2,3,4,5,6,..... write code for this?
Explain StretchBlt and BitBlt
What are the differences between MFC Exception macros and C++ exception keywords?
what do you mean by psychic window?