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 |
1)how to Display the File Dialog Box, in MFC ?
What is the use of UpdateData funciton ?
Tell us something about MFC?
If there is more than 100 control in a window how we can change the Taborder of a controls
how u can move CDC pointer to one line in cview?
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
If i derive a new class from CObject what are the basic features my derived wil get ?
how to repaint when working with horizontal scroll bar
What is the difference between workrer thread and UI thread
Whats is DDX & DDV in MFC?
1)How to create ToolTip in MFC?
Difference between Cclint DC & Cpaint Dc