Hi, I have two issues.
1) How can I change the title from 'Edit Appointment'
2) I programmatically call a custom appointment dialog, but the background dropdown is empty. The code is below, I had to add a New event to the custom dialog in order to get it to work
Dim app As New Appointment(Now, Now.AddMinutes(30))
Dim frmeditDialog As EditAppointmentDialogExtended = New EditAppointmentDialogExtended(app, DashBoard.schMain)
If frmeditDialog.ShowDialog(Me) = DialogResult.OK Then
DashBoard.schMain.Appointments.Add(frmeditDialog.Appointment)
End If
Here is the New Sub in the custom dialog:
Sub New(app As Telerik.WinControls.UI.Appointment, radScheduler As RadScheduler)
_app = app
_radScheduler = radScheduler
InitializeComponent()
End Sub
Any help is appreciated.
1) How can I change the title from 'Edit Appointment'
2) I programmatically call a custom appointment dialog, but the background dropdown is empty. The code is below, I had to add a New event to the custom dialog in order to get it to work
Dim app As New Appointment(Now, Now.AddMinutes(30))
Dim frmeditDialog As EditAppointmentDialogExtended = New EditAppointmentDialogExtended(app, DashBoard.schMain)
If frmeditDialog.ShowDialog(Me) = DialogResult.OK Then
DashBoard.schMain.Appointments.Add(frmeditDialog.Appointment)
End If
Here is the New Sub in the custom dialog:
Sub New(app As Telerik.WinControls.UI.Appointment, radScheduler As RadScheduler)
_app = app
_radScheduler = radScheduler
InitializeComponent()
End Sub
Any help is appreciated.