c++ scrollbar to window
- by stefan
hey, here im creating a window:
_hWnd = CreateWindowEx(
WS_EX_CLIENTEDGE, //dwExStyle
(LPCWSTR) _wndClass, //lpClassName
L"", //lpWindowName
WS_CHILD | WS_HSCROLL | WS_VSCROLL , //dwStyle
CW_USEDEFAULT, //X
CW_USEDEFAULT, //Y
200, //nWidth
150, //nHeight
hWndParent, //hWndParent
NULL, //hMenu
hInstance, //hInstance
NULL //lpParam
);
i added the scrollbars (WS_HSCROLL | WS_VSCROLL), but how can i control them?