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 mfc class hierarchy?
How to find the mouse entering an image?..while entering need to display next image...
Tell us something about MFC?
How do I create a dialog box in mfc?
what is the component of CLR ?
Whats is DDX & DDV in MFC?
How can i implement the dynamic menus in MFC plz give the code
General purpose classes in MFC
What is stack size in win32 program?
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 the use of UpdateData funciton ?
What is the difference between Struts and JSF? Pls list some most suitable differences.