Examples: PartialMatches property
This button toggles the use of partial matches for lookups. The form that contains this button contains other buttons that do lookups.
Dim session As NotesSession
Dim directory As NotesDirectory
Sub Initialize
Set session = New NotesSession
Set directory = session.GetDirectory("myserver/Acme")
End Sub
Sub Click(Source As Button)
Dim msg As String
If directory.PartialMatches Then
msg = "Partial matches are in effect"
Else
msg = "Partial matches are not in effect"
End If
Msgbox msg,, "Partial matches"
End Sub