hi,
i disabled add,edit and delete appointment on Scheduler by canceling them:
everything works fine at debugging and running on the developing computer
but after puplishing the application when i double click on the appointment an exception is thrown:
Exception Message:"value is lower than the minimum value"
this happens in EditAppointmentDialog.InitializeComponent() !!!!!!
i disabled add,edit and delete appointment on Scheduler by canceling them:
private void ReservationRadScheduler_AppointmentDeleting(object sender, SchedulerAppointmentCancelEventArgs e) { e.Cancel = true; } private void ReservationRadScheduler_AppointmentDropping(object sender, AppointmentMovingEventArgs e) { e.Cancel = true; } private void ReservationRadScheduler_AppointmentEditDialogShowing(object sender, AppointmentEditDialogShowingEventArgs e) { e.Cancel = true; }but after puplishing the application when i double click on the appointment an exception is thrown:
Exception Message:"value is lower than the minimum value"
this happens in EditAppointmentDialog.InitializeComponent() !!!!!!