The LS code discussed here to auto-select a field upon entry works great if you tab into the field. Is there a way, also, to select the field if it is entered with a mouse click?
Here is the code I am using now:
Dim ws As NotesUIWorkspace
Dim UIDoc As NotesUIDocument
Sub HighlightText
If ws Is Nothing Then
Set ws = New NotesUIWorkspace
Set UIDoc = ws.CurrentDocument
End If
Call UIDoc.SelectAll
End Sub
*** Code is called on Entering event.