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 |
How we call a dialog in another dialog?
if i modified data in 1 view how does the other view knows
What is primitive and non-primitive application?
What interface must be supported by an ActiveX control?
how to give colour for dialog button or static buuto?any one explain full code ?pls pls
Tell us something about MFC?
What is stack size in win32 program?
WHAT IS DIFFERENT BETWEN RELEASE MODE & DEBUGGING MODE
4 Answers Google, Microsoft, TCS,
In MFC By Using Communication Between Dialog Boxes,How Can We Send Message Of one Dialog Box To Another Dialog.?
3 Answers Financial Technologies,
what is functioning of DIalodDataXchange ..?
If i derive a new class from CObject what are the basic features my derived wil get ?
What is LPCTSTR? What does LP denote it?