T
Ich nochmal:
Selbst in einer MDI-Anwendung wird ein CFrameWnd mit der folgenden Initialisierung nicht aktiviert:
CFrameWnd* pFrameWnd = new CFrameWnd();
RECT rect;
rect.top = 100;
rect.bottom = 200;
rect.left = 50;
rect.right = 70;
pFrameWnd->Create(NULL,
"Test",
WS_CHILD | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_GROUP | WS_TABSTOP,
rect,
this->GetWindow(GW_CHILD),
NULL,
0,
NULL);
pFrameWnd->SetWindowPos(&wndTop, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
pFrameWnd->ShowWindow(TRUE);
Wieso nicht???