View Single Post
Old Dec 11th, 2006, 4:44 PM   #1
ParadiseIsle
Newbie
 
Join Date: Nov 2005
Posts: 3
Rep Power: 0 ParadiseIsle is on a distinguished road
Click event triggered unexpectedly

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? Can I stop it from happening?


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.
ParadiseIsle is offline   Reply With Quote