Hi,
Is there a way to prevent the appointment delete dialog from showing up?
I can cancel the event BeforeDisplayAppointmentDialog of the calendar information control, but I cannot find one for the deletion dialogue.
Also, is it possible to resize the dayview so that it will show all the rows without having to scroll? And is it possible to not show the nonworkinghours timeslots?
and lastly, if I am creating the appointments and inserting them into a datatable, how do I set the recurrence? Or do I have to do that using the calendarinfo object?
Thanks,
DayView.BeforeAppointmentsDeleted event
Private Sub UltraDayView1_BeforeAppointmentsDeleted(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.BeforeAppointmentsDeletedEventArgs) Handles dayViewAppointments.BeforeAppointmentsDeleted
Just call
e.cancel = true
in this event
CheersAaron