Hello,
I am working with form having multiple tabpages. I need to set the focus on first textbox of all tabpages. I tried to declare the following when the form loads, but only txtbox1.select() is working.
Private Sub frmMaintab_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
txtbox1.select()
'First textbox under first tab page
txtbox2.select()
'First textbox under second tab page
txtbox3.select()
'First textbox under third tab page