This is odd do you have any code so I can see what you mean?
The code is large (10000 lines) - adapted from the vb6 project. However, the only sizing/resizing I do is what vb.net does for me to load/initialize controls and when the form resize event is fired. I'll share the latter here:
[vbcode]
Private Sub Main_Resize()
' this tab control is the one giving me trouble and nothing else on the tab control is resized by code
With TabControl2
.Width = Me.Width - 18
End With
With TabControl1
.Width = Me.Width - 18
.Height = Me.Height - TabControl2.Height - 80
End With
With zgProbability
.Width = TabControl1.Width - 12
.Height = TabControl1.Height - 45
End With
With zgHistogram
.Width = TabControl1.Width - 12
.Height = TabControl1.Height - 45
End With
With zgBox
.Width = TabControl1.Width - 12
.Height = TabControl1.Height - 45
End With
With zgAnnualBox
.Width = TabControl1.Width - 12
.Height = TabControl1.Height - 45
End With
With zgSeasonalBox
.Width = TabControl1.Width - 12
.Height = TabControl1.Height - 45
End With
With zgMonthlyBox
.Width = TabControl1.Width - 12
.Height = TabControl1.Height - 45
End With
With zgTimeSeries
.Width = TabControl1.Width - 12
.Height = TabControl1.Height - 82
End With
Me.Visible = True
With zgMaster
Me.Visible = True
.Width = TabControl1.Width - 12
.Height = TabControl1.Height - 45
End With
With dgSummary
.Width = TabControl1.Width - 12
End With
With dgData
.Width = TabControl1.Width - 12
End With
With dgModel
.Width = Me.TabControl1.Width - 12
' .Height = TabControl1.Height - 45
End With
end sub