Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Text1.SetFocus
Text1.SelStart = 1
Text1.SelLength = Len(Text1.Text)
Text1.SetFocus
Text1.SelStart = 0
Text1.SelLength = Len(Text1.Text)
select case nBoxFlag
case 1
txtBox1.SetFocus
case 2
txtBox2.setfocus
end select
Private Sub sf(tb As TextBox)
tb.SetFocus
tb.SelStart = 0
tb.SelLength = Len(Text1.Text)
End Sub
Private Sub Text1_LostFocus()
Call sf(Text1)
End Sub
Private Sub Text2_LostFocus()
Call sf(Text2)
End Sub