If you have a schedule set to 15 minute increments and book an appointment for only 18 minutes, it blocks off two 15 minute blocks instead of just one 15 minute block and partially into the 2nd 15 minute block. It makes alot of available time appear to be taken up.
Is there a setting to prevent this?
Thank you!
Hello,
The easiest way to do this is to use the Office 2007 View Style. You can apply this style by adding an UltraCalendarLook to your form and setting the ViewStyle property to Office2007.
Drop an UltraCalendarLook onto the form in the designer and add this code:ultraCalendarLook1.ViewStyle = ViewStyle.Office2007;ultraDayView1.CalendarLook = ultraCalendarLook1;
Please let me know if this works for you.
SincerelyJosheela
Thank you! That worked.
It is strange that of all the 4 or 5 ViewStyles available only the Office2007 will support this behavior. Hopefully they will have some more added at some point.