Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
595
UltraDayView and appointment drag
posted

Hi,

I have a form with an UltraDayView in it which i add appointments to it.

Whenever i want to drag an appointment - it doesn't allow me to drag if i'm not on a certain area of the appointment.

see the attached picture.

What am i missing?

Thanks,

Ziv

Parents
No Data
Reply
  • 12480
    Offline posted

    Hi Ziv,

    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.

Children