(Contents)(Previous)(Next)

InitCheckRecipients()

Description: Prepares the session to validate a passed in recipient
Syntax: object.InitCheckRecipients( name )
Parameters:
object Required, the Session object
name A search string which should match part or all of the required recipient.
Remarks: This function returns the number of recipients that matched the passed in search name. It is intended that this function is used in conjunction with GetCheckedRecipient().
Returns: The number of recipients that matched the passed in search name.
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Set user = session.Logon(login name, password)

iCount = session.InitCheckRecipients("smith")


Next