Gets an appointment from Pocket Outlook using the object ID.
POOM objects
POOMAppointment objectname.GetAppointmentFromOID (oid)
Argument |
Description |
---|---|
objectname |
The name of the POOM object |
oid |
Unsignedlong for the object ID of the appointment that you want to get |
POOMAppointment. Use the IsValid function to confirm that a valid appointment was returned.
A user must be logged in to a POOM object to get an appointment from Pocket Outlook.
The following example retrieves an appointment with an object ID of 1234:
// global variable: g_poom POOMAppointment appt appt = g_poom.GetAppointmentFromOID( 1234 ) If IsValid (appt) then // Use appt end if