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 u identify RTTI in vc++
Hi All, I have created one MFC Dialog Based application.now if i am running the application its working fine,instead of closing he application i minimized the application,if i run the application again,i am getting the Dialog. I want to prevent the calling of application multiple times. please give me the code and let me know in which method i need to make changes. Praveer
what is functioning of DIalodDataXchange ..?
What is CSingleDocTemplate?
what is message loop how mfc does it internally?
What are the advantages of using Doc/View or SDI over DialogBox
What is socket?
what if we provide two message handler for same message ?
What is CALLBACK? How it work? what is the advantage of CALLBACK, please explain with an example
how does the UIThread and worker thread communicates and handle events
Does the application have more than one object? If Yes, Briefly explain.
What is the base class for MFC Framework ?