I am working in Windows Form framework of c# , i have developed a form consisting of two textboxes (name and address). Problem is when i start my application focus is on address rather then name, how can i change this settings? Thank you in advance.
Share
In
Form_Loadevent call:You may look at Control.Focus() on msdn
You may also look at this article to Set the Tab order if you don’t want to use
Focus()