Lo he solucionado con este codigo
Código:
' Recorremos la colección de controles del formulario
'
For Each ctrl As Control In Me.Controls
' Si el tipo de control es TabControl
'
If TypeOf ctrl Is TabControl Then
' Si se llama myTabControl
'
If ctrl.Name = "myTabControl" Then
' Lo eliminamos de la colección
'
Me.Controls.Remove(ctrl)
End If
End If
Next