Gracias David, me diste una idea. Hice una condición donde si está seleccionada una opción entonces se agrega un tab, si es la otra, se agregan ambos tam:
Código PHP:
If Label3.Text = "Location_Setup" Then
Me.TABgeneral.Text = "General Comments"
Me.tabControl1.Controls.AddRange(New Control() {Me.TABgeneral, Me.TAB800})
Else
Me.TABgeneral.Text = "DDT Comments"
Me.tabControl1.Controls.AddRange(New Control() {Me.TABgeneral})
End If
Gracias!!