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 do I create a dialog box in mfc?
Why Array Index starts from Zero
1)set the Title for The File DialogBox, in MFC?
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?
what is the updated verssion in vc++
In VC++ How to transfer between one exe to another exe while running..
How to convert the content of buffer into lower case character.
List out the parameters of WinMain Function.
Difference between Cclint DC & Cpaint Dc
How we call a dialog in another dialog?
What is userdefine Messages in MFC?
19)how to set Back Ground Picture to a Dialog Box in MFC ?