I am currently working with the UltraDayView. I need a way to override the built in 'Appointment' dialog. I wish to provide a custom dialog that allows me to enter what in my case constitutes a 'Time Log'.
Is it possible to override the built in dialog with my own? If so, can anyone provide an example or point to a sample??
By handling the BeforeAppointmentAdded event you can cancel the appointment dialog and call your own.
Private Sub CalendarInfo_BeforeAppointmentAdded(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.CancelableAppointmentEventArgs) Handles CalendarInfo.BeforeAppointmentAdded
e.Cancel = True If (e.Cancel) Then
... Call your form