Displays the appointment, contact, or task using the default display in Pocket Outlook or the window specified as an optional argument to the POOM Login function.
POOMAppointment, POOMContact, POOMTask objects
Integer objectname.Display ( )
Argument |
Description |
---|---|
objectname |
The name of the POOMAppointment, POOMContact, or POOMTask object |
Integer. Returns 1 for success and one of the following negative values if an error occurs:
-2 Cannot connect to the repository or a required internal subobject failed to connect to the repository
The following example displays the first appointment in the list of appointments:
POOMAppointment appt DateTime dt // global variable g_poom appt = g_poom.GetAppointment(1) dt = appt.AppointmentStart appt.display()