Page 1 of 1

Change the order of Appointment Text

PostPosted: Fri Jul 07, 2006 9:26 am
by Becky
On the Schedule Tab of the Calendar, how do I change the order of the text that appears in the appointment box?

I would like the "title" to appear after the "client."

PostPosted: Fri Jul 07, 2006 10:36 am
by John Sindelar
Hi. Edit the field definition for the calc "ApptDisplayOnScheduleText" in the CCCalAppts table. For exmple, one with title after client would look like this:
Code: Select all
If ( not IsEmpty ( AppointmentsDailyClients::PrimeClientIDX ) ;
AppointmentsDailyClients::ClientNameLastFirstCalc &
If ( not IsEmpty ( AppointmentsDailyClients::ClientCompanyName ) ; ¶ & AppointmentsDailyClients::ClientCompanyName ) &
If ( not IsEmpty ( AppointmentsDailyClients::ClientPhone ) ; "¶tel. " & AppointmentsDailyClients::ClientPhone )
) // End If Client

& ¶ & ApptTitle &

If ( not IsEmpty ( ApptDesc ) ; ¶ & ApptDesc )


BTW, we have a special forum just for calendar questions, if you're interested.