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 functioning of DIalodDataXchange ..?
Whats is DDX & DDV in MFC?
Tell us something about MFC?
what if we provide two message handler for same message ?
How to update all the views whenver document got updated ?
how do u identify RTTI in vc++
What function is used to disable a control at runtime?
How we can findout Memoryleaks, In what way it can be avoided
What is the size of class
What is stack size in win32 program?
What is the use of UpdateData funciton ?
What is CArchive class dowes?