Hi everyone,
How does one disable the drag-drop for appointments?
Please help, thank you.
I had to disable appointment draggin from one owner to another, and this helped:
Private Sub ultraDayView1_AppointmentsDragging(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.AppointmentsDraggingEventArgs) Handles ultraDayView1.AppointmentsDragging
e.AllowOwnerChange = False
End Sub
In 2009.1 and later, handle AppointmentsDragging and cancel it
Try to use Appointment.Lock property.
Did you ever figure out how to do this? I'm tring to do the same thing.
How does hooking into the mouse down and up events allow stopping the drag and drop?