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.
TrekBiker said:all of the existing text on the selected tab is highlighted automatically
Private Sub ContactInformation_GotFocus()
If Nz(Me.ContactInformation, "") = "" Then
Me.ContactInformation.SelStart = 0
Else
Me.ContactInformation.SelStart = Len(Me.ContactInformation) + 1
End If
End Sub