In response to the user selecting an item from a dropdown list, a value is assigned to another dropdown list on the same form. When this assignment is made, it triggers the "click" event for that other dropdown. Why should this be?
Code:
Private Sub Step_Click()
Select Case Step
Case "New Diameter"
Transition.Visible = True
TransitionLabel.Visible = True
Transition.Text = "Step"
End Select
End Sub()
The line Transition.Text = "Step" triggers the Transition_Click() event, and in doing so, generates an unrelated error.