RoyHP316
RoyHP316

Reputation: 3

VB.Net How do you move the focus to the entry text box when the user selects a different item in a combo box?

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

Answers (1)

Precious Uwhubetine
Precious Uwhubetine

Reputation: 3007

Under the combo box selected index changed event ; use

textbox1.Select()

or

textbox1.Focus

Upvotes: 2

Related Questions