I have created a Window and then, created 50 buttons on this Window but I can only see 10 buttons on my window. Rest are out of view since I am not able to scroll the window down.
I have added auto scroll to window by adding
WS_VSCROLL | WS_HSCROLL | ES_AUTOVSCROLL | ES_AUTOHSCROLL
to Window Style parameter of CreateWindowEx function. By doing this, I can see a scroll on the window but this scroll is not movable.
What is the possible and simple solution to add a auto scroll to window in order to see all the 50 buttons in such a situation.