Scratch that:
Do this instead:
CRect Rect;
GetWindowRect(&Rect);
SetWindowPos(NULL,0,0,Rect.Width()+50,Rect.Height()+50,SWP_NOMOVE|SWP_NOZORDER);
GetParentFrame()->GetWindowRect(&Rect);
GetParentFrame()->SetWindowPos(NULL,0,0,Rect.Width()+50,Rect.Height()+50,SWP_NOMOVE|SWP_NOZORDER);
AliR.
"AliR (VC++ MVP)" <AliR@online.nospam> wrote in message
news:l3xIi.8167$JD.104@newssvr21.news.prodigy.net...
Call ResizeParentToFit from within the View.
AliR.
<przemyslaw.sliwa@gazeta.pl> wrote in message
news:1190303985.150090.109380@g4g2000hsf.googlegroups.com...
Hello,
I have a view which derives directly from the CFormView and then I
display a child dialog on it at runtime.
Visual Studio creates automatically resource entry for my view class.
The dialog can be resied dynamically by the user by pressing the
button and I would like the view to always fit the size of the dialog.
At the moment when I press a button and the dialog dimensions change I
cannot resize the view and a scrollbar is created, which looks really
ugly.
Could someone help me with this problem? How can I automatically
resize the view so that it always fits the dialog window?
Everything is happening in the MDI world.
Thanks for help,
Pshemek
Joseph M. Newcomer [MVP]