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 = "FTB4" Or "FTR12" Then
GroupBox1.Height = "67"
Else
GroupBox1.Height = "120"
End If
End Sub
I understand that anything within a quote is considered a string. I would much rather consolidate my code since if the user chooses certain product as shown above the same action will occur. Hope that makes sense. Thank you for the guidance.