Hi
I am new to this contorl. i have two tables which one stores data for the schedule and the other stores the owner. When i run my application i get the following error message:
Could you tell me what is the problme please?
I checked the sample and noticed that there are duplicate key in the schedule table.
This is my code:
Private myDS As New DataSet
Private myDSOwner As New DataSet
Me.CalendarInfoSVC.DataBindingsForAppointments.BindingContextControl = Me
Me.CalendarInfoSVC.DataBindingsForAppointments.EndDateTimeMember = myDS.Tables.Item(0).Columns("CheckOutDate").ColumnName
Me.CalendarInfoSVC.DataBindingsForAppointments.OwnerKeyMember = myDS.Tables.Item(0).Columns("ServCatID").ColumnName
Me.CalendarInfoSVC.DataBindingsForAppointments.DataKeyMember = myDS.Tables.Item(0).Columns("ServiceHID").ColumnName
End Sub
Me.CalendarInfoSVC.DataBindingsForOwners.BindingContextControl = Me
Me.CalendarInfoSVC.DataBindingsForOwners.NameMember = myDS.Tables.Item(1).Columns("Description").ColumnName
myDT = MobService.ListServiceAppointments()
myDS.Tables.Add(myDT)
myDS.Tables.Add(myDTOwner)
GetApponitmentSVC()
GetAppointmentOwner()
thanks for your help.
Kamal
Never mind then, my error is something different