Page 1 of 1

How do you make all appointments show on calendar?

PostPosted: Thu Apr 01, 2010 12:13 pm
by dcamail
I know there is a very easy solution to my problem. According to my lack of expertise, I have SLIGHTLY modified my copy of seedcode to suit my particular application. The problem I am having is: how do I make new appointments show AUTOMATICALLY on the calendar once they are created in the mini window...without having to click the little calendar icon? I can't afford to forget the click one time and not have the appointment show on the schedule. What do I do?

PostPosted: Fri Apr 02, 2010 5:57 am
by John Sindelar
Change the auto-enter definition of the field ApptClass_k in the appointments table to this:
Code: Select all
Lower (

"calendar" & ¶ &

SeedCode_RemoveExtraReturns (

If ( ApptProjectOverview_k = 1 ;

// #### If this is a project overview...

Substitute ( ApptClass_k ; "gantt" ; "" ) & ¶ & "gantt" ;

// #### ortherwise leave the class alone...

ApptClass_k

) // End IF
) // End CCRemoveExtraReturns
) // End Lower


And uncheck the box below the definition that says "Do not evaluate if all referenced fields are empty".

That's it.

Thanks for your response and solution

PostPosted: Fri Apr 02, 2010 10:29 am
by dcamail
Works perfect!