or
void
Appointments_CollectionChanged(
object
sender, Telerik.WinControls.Data.NotifyCollectionChangedEventArgs e)
{
if
(e.Action == Telerik.WinControls.Data.NotifyCollectionChangedAction.ItemChanged)
{
if
(e.NewItems.Count > 0 && e.OldItems.Count > 0)
{
DoctorAppointment newAppt = (DoctorAppointment) e.NewItems[0];
DoctorAppointment oldAppt = (DoctorAppointment) e.OldItems[0];
if
((e.PropertyName ==
"Start"
|| e.PropertyName ==
"End"
))
{
sc.RescheduleAppointmentAsync(
this
.LoggedInUserID, newAppt.id, newAppt.Start, newAppt.End);
}
if
(e.PropertyName ==
"status_id"
)
{
short
followupid = newAppt.status_id.GetValueOrDefault(-1);
if
(followupid > 0) {
sc.FollowupAppointmentAsync(
this
.LoggedInUserID, newAppt.id, followupid);
}
}
newAppt =
null
;
oldAppt =
null
;
}
}
}
We identified several issues with our new Upgrade Wizard shortly after our Q2 2011 release.
The following circumstances are known to cause issues when using the Upgrade Wizard:
All of the above issues have already been addressed and an update has been released through the Visual Studio Online Gallery:
Telerik WinForms VSExtensions
You should be able to use the Visual Studio 2010 Extension Manager to download the update.
In case you are using Visual Studio 2008 and cannot get updates through the Visual Studio Online Gallery, you will be able to benefit the update when our next Service Pack release.
Best regards,
The Telerik Team