Article ID: 113588
Article Last Modified on 11/21/2006
GetParentFrame()->RecalcLayout();See the sample code below for an example of this.
/* Compile options needed: none
*/
void CMyFormView::OnInitialUpdate()
{
CFormView::OnInitialUpdate(); // Base class initialization.
//GetParentFrame()->RecalcLayout // Uncomment to fix. No need to
// call if this is version 2.5.
CSize mysize(100,100);
SetScaleToFitSize(mysize); // This will ASSERT in version
// 2.0 unless RecalcLayout is
// called.
}
Additional query words: 1.00 2.00 2.10 kbNoUpdate
Keywords: kbbug kbdocview kbfix kbvc150fix KB113588