Ejemplo n.º 1
0
        void synchronizer_AppointmentExportSynchronized(object sender, AppointmentSynchronizedEventArgs e)
        {
            count++;

            // !!! Note: the following code isn't necessary when targeting XtraScheduler v2008 vol 1 and higher
            OutlookAppointmentSynchronizedEventArgs args = (OutlookAppointmentSynchronizedEventArgs)e;

            if (args.Appointment != null && args.OutlookAppointment != null)
            {
                if (e.Appointment.CustomFields[OutlookEntryIDFieldName] == null)
                {
                    e.Appointment.CustomFields[OutlookEntryIDFieldName] = args.OutlookAppointment.EntryID;
                }
            }
        }
Ejemplo n.º 2
0
 void synchronizer_AppointmentImportSynchronized(object sender, AppointmentSynchronizedEventArgs e)
 {
     count++;
 }
Ejemplo n.º 3
0
 void exportSynchronizer_AppointmentSynchronized(object sender, AppointmentSynchronizedEventArgs e)
 {
     // Your code here.
 }