0

I have a CTabCtrl in my program and 3 "child" *CFormView*s that I show/hide whenever the user changes the active tab.

Instead of using a fixed size, I'd like to resize the enclosing CTabCtrl to match the size of the largest CFormView.

Fábio
  • 3,291
  • 5
  • 36
  • 49

1 Answers1

0

You can use this:

GetDlgItem(IDC_YOURCONTROL)->MoveWindow(xPosInScreen, yPosInScreen, Width, Height);

Hope it helps.

Sunscreen
  • 3,452
  • 8
  • 34
  • 40