Reputation: 3
How do you move the focus to the entry text box everytime the user selects a different item in a combo box?
Sorry if this is a stupid question, but I can't find an answer on the net.
Upvotes: 0
Views: 367
Reputation: 3007
Under the combo box selected index changed event ; use
textbox1.Select()
or
textbox1.Focus
Upvotes: 2