(Contents)(Previous)(Next)

RemindTime (property)

Description: Represents the number of minutes prior to the start of this appointment that the owner is given a remind alarm. Setting this property also sets the Remind property to True.
Type: long
Default: 5
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.Name = "Morning Meeting"

appt.Start = #14/12/97 10:00#

appt.RemindTime = 30


Next