
Private Sub ComboBox2_AfterUpdate() If ComboBox2 = "ROSSO" Then TextBox1.SetFocus ElseIf ComboBox2 = "VERDE" Then TextBox2.SetFocus End If End Sub |
Private Sub ComboBox2_change() If ComboBox2.text = "ROSSO" Then TextBox1.SetFocus ElseIf ComboBox2.text = "VERDE" Then TextBox2.SetFocus End If End Sub |
