I have an UltraWeekView calendar that is set up to allow users to drag appointments around. Everything works fine. But if a user holds ctrl and drags, the appointment is copied to the destination. How can this be disabled? (I want user to be able to drag appointments, but not copy them using the ctrl key)
Thanks
Is there a way to disable this default behaviour of the UltraWinDayView control? (Disable the ability to CTRL key + Drag to make a copy of the appointment?)
Alternatively... does this action raise a particular event?
Regards
Aaron
It would be nice to know how to fix this. I also have an issue with this feature permiting the user to copy events instead of just moving them.
Anyone?
Xinull
Bump.... Still no answers?
This can be disabled by preprocessing of a KeyDown event - just override ProcessCmdKey method in a class hosting the UltraWeekView or UltraDayView control.
{
else
}
This code disables ability to select multiple appointments using CTRL button.