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 the component of CLR ?
1)How to change a text of a button in runtime?
What is document-view architecture ? Give me one real time example for SDI ?
how can u change button shape at run time
Which Macro is a Super set of other two macro DECLARE_SERIAL,DECLARE_DYNAMIC and DECLARE_DYNCREATE. ?
visual Pogramming c++ coding for create a paint application.. (Please someone help me)
What is the difference between GetMessage and PeekMessage ?
Which MFC function is used to display output?
1) How do you Destroy a Dialog Box ?
how to give colour for dialog button or static buuto?any one explain full code ?pls pls
how u can move CDC pointer to one line in cview?
How to find the mouse entering an image?..while entering need to display next image...