In a form, how would I go about putting the curser either on a certain button or in a box with everything highlighted?
Printable View
In a form, how would I go about putting the curser either on a certain button or in a box with everything highlighted?
Use the focus method if I understand your question right.
Example:
myButton.Focus()
Thank you.