I am converting a regular form into a MDI form by drawing an MDIClient
onto it's client area using the CreateWindowEx function. The style is
WS_CHILD WS_CLIPCHILDREN WS_VISIBLE WS_HSCROLL WS_VSCROLL, the
extended style is WS_EX_OVERLAPPEDWINDOW. The MDIClient gets drawn, I
use SetParent to set it as the parent for my forms, and I am able to
Tile/Cascade them. The problem is that when I move a form beyond the
MDIClient area, I don't get a scroll bar although the window style
specifies it. I have tried initializing the scroll bars by using
SetScrollInfo and setting the min/max range. Does anyone have any idea
where this is going wrong?