Display

Description

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.

Applies to

POOMAppointment, POOMContact, POOMTask objects

Syntax

Integer objectname.Display ( )

Argument

Description

objectname

The name of the POOMAppointment, POOMContact, or POOMTask object

Returns

Integer. Returns 1 for success and one of the following negative values if an error occurs:

Examples

Example 1

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()

See also