Message to limit the size of window
Answers were Sorted based on User's Feedback
Answer / naviyr
WM_SIZE message is received by the window procedure when a
user resizes a window. In order to limite the size of a
window, you could handle the WM_SIZE message appropriately.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / somasundaram
WM_SIZE message to an application is posted after the
resizing operation, instead WM_SIZING should be handled and
the lpRect member can be modified.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / jayendran g
BOOL MoveWindow(
HWND hWnd, // handle to window
int X, // horizontal position
int Y, // vertical position
int nWidth, // width
int nHeight, // height
BOOL bRepaint // repaint option
);
This cud be used in the WM_PAINT event section and in
WM_INITDIALOG section.
| Is This Answer Correct ? | 2 Yes | 1 No |
win 3.1 supports which type of multi tasking?
describe process of creating a new class of windows ??
what is the stack size in win 32 program
About GDI object?
how radio button is active in dialog box?
What is preemption ? context switching ?
In win32 application if defining a variable of CString then it gives the error "CString:Undeclared identifier" how to solve the problem? What headerfile need to include??
What Message to limit the size of window?
Message to limit the size of window
explain WM_PAINT message ?????
how to Initialize contents of a dialog?
How to load Bitmap at Dialogbakground in an MFC application?
1 Answers SunSoft Technologies,