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 |
List out the parameters of WinMain Function.
What are the special requirements for dialog box resources used in a form view?
Does the application have more than one object? If no, then what is the reason?
What are the differences between MFC Exception macros and C++ exception keywords?
what is message Testing ?
how to repaint when working with horizontal scroll bar
What function is used to retrieve the currently selected index in a list box?
In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?
What is a message map, and what is the advantage of a message map over virtual functions?
What are the advantages of using Doc/View or SDI over DialogBox
Which MFC function is used to display output?
Difference between Cclint DC & Cpaint Dc