Harpoon wrote on Nov 11
th, 2009 at 10:40pm:
Thanks for the quick support

I will try it out and let you know.
I have tried this and it works successfully. I am now able to save and load the database data to the calendar.
I will post my code in VB for anyone that is interested.
Create a class as follows:
Public Class Converter
Implements MindFusion.Scheduling.DataBinding.IValueConverter
Public Function Convert(ByVal value As Object, ByVal destination As Object, ByVal destinationMember As String, ByVal destinationType As System.Type) As Object Implements MindFusion.Scheduling.DataBinding.IValueConverter.Convert
If (TypeOf value Is SByte OrElse TypeOf value Is Byte) AndAlso destinationType Is GetType(Boolean) Then
Return CBool(value <> 0)
End If
Return value
End Function
Public Function Supports(ByVal value As Object, ByVal destination As Object, ByVal destinationMember As String, ByVal destinationType As System.Type) As Boolean Implements MindFusion.Scheduling.DataBinding.IValueConverter.Supports
If (TypeOf value Is SByte OrElse TypeOf value Is Byte) AndAlso destinationType Is GetType(Boolean) Then Return True
End Function
End Class
-------------
Use the overloaded method
_schedule.LoadFromDataSource(New Converter)
to load the data.
Thanks for your help on this issue.