How I can create child window with coordinates that are larger than 32767? For example:
HWND tmp =
CreateWindow(
_T( "BUTTON" ), _T( "Test" ),
WS_CHILD | WS_VISIBLE,
10, 45000, 80, 25,
hWnd, (HMENU)1, (HINSTANCE)GetModuleHandle( NULL ), NULL );
This code creates button with coordinates 10;32767. Using of MoveWindow or SetWindowPos functions give same result.
I need to create window with scroll and child controls on it (simple form).
1 Answer