Set the default of the enabled flag for the the relevant textboxes in the properties window to false, then you can enable them as necessary later on.

Private Sub ComboBox1_Change()
    If Me.ComboBox1.Value <> "" Then
        Me.TextBox1.Enabled = True
    End If
End Sub