1)does Frame Thickness in MFC?
Answer / 106743013743
Use WS_THICKFRAME
ex1:-
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
cs.style = WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE|
WS_THICKFRAME;
}
Ex2 :-
BOOL Ctharam::PreCreateWindow(CREATESTRUCT& cs)
{
cs.style &= ~(WS_MAXIMIZEBOX|WS_THICKFRAME);
}
try it, you can opt
code by Ctharam
| Is This Answer Correct ? | 0 Yes | 2 No |
What is the difference between ASSERT and VERIFY?
how do u identify RTTI in vc++
How WM_PAINT message gets called in MFC,please explain it . a)Who calls the WM_PAINT message? b)When it gets called? c)how it comes to message queue? Please Explain it
In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?
how can u change button shape at run time
What is the base class for MFC Framework ?
What are the special requirements for dialog box resources used in a form view?
what is the size of a process
What is model and modeless dialog box ? Give some examples?
What is userdefine Messages in MFC?
what is the use of CWinApp class?
1)why we cant create more than one instance of the class Derived from CWinApp