(Contents)(Previous)(Next)

Remind (property)

Description: True if an alarm has been set to remind the appointments owner of its imminent start. This property automatically gets set to True when the RemindTime is set. You can set this property to True in order to request a reminder for the associated appointment.
Type: Boolean
Default: False
Example:
Dim session As Object

Dim user As Object

Dim appts As Object

Dim appt As Object

Set session = CreateObject("OfficeTalk.Session")

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

Set appts = user.appointments

Set appt = appts.Add

appt.Remind = True


Next