How to resize a CTabCtrl to fit its contents

1.5k views Asked by At

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.

1

There are 1 answers

0
Sunscreen On

You can use this:

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

Hope it helps.