Code:
Private Sub CmbTieSize_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbTieSize.SelectedIndexChanged
LblTieColorDisplay.Text = CmbTieSize.SelectedValue.ToString
If CmbTieSize.Text = "FTB6" OrElse CmbTieSize.Text = "FTY8" OrElse CmbTieSize.Text = "FTG10" Then
GroupBox1.Height = "77"
GroupBox2.Height = "77"
GroupBox3.Height = "77"
GroupBox3.Location = New Point(15, 195)
Me.Height = "360"
Else
GroupBox1.Height = "44"
GroupBox2.Height = "44"
GroupBox3.Height = "44"
GroupBox3.Location = New Point(15, 162)
Me.Height = "275"
End If
End Sub