Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = workspace.CurrentDocument
If CurrentField = "" Then
Msgbox "You must choose a profile", 48, "No profile was choosen!"
Continue=False
Call uidoc.GotoField("Profiles")
End If
End Sub
The MsgBox runs as it should but the cursor goes to the next field in the form and I can continue without choosing a profile and I get prompted to choose a profile even when I do???