Hi Guys
I am working the example on the following link
http://www.telerik.com/help/winforms/binding_to_custom_fields.html
and when I added the following code
On my import statement I am getting the following error
Error 1 'IAppointmentFactory' for the Imports 'Telerik.WinControls.UI.IAppointmentFactory' does not refer to a Namespace, Class, Structure, Enum or Module.
The following error message is on the line Implements IAppointmentFactory
Error 2 Class 'CustomAppointmentFactory' must implement 'Function CreateNewAppointment() As IEvent' for interface 'Telerik.WinControls.UI.IAppointmentFactory'.
And thrid error is String constant expected on the line #region IAppointmentFactory Member
I have referenced the necassary dlls. I am using VS2005.
Thanks
JJ
I am working the example on the following link
http://www.telerik.com/help/winforms/binding_to_custom_fields.html
and when I added the following code
Imports
Telerik.WinControls.UI.IAppointmentFactory
Public Class CustomAppointmentFactory |
| Implements IAppointmentFactory |
| #region IAppointmentFactory Members |
| Public Function CreateNewAppointment() As IEvent |
| Return New AppointmentWithEmail() |
| End Function |
| #End Region |
| End Class |
Error 1 'IAppointmentFactory' for the Imports 'Telerik.WinControls.UI.IAppointmentFactory' does not refer to a Namespace, Class, Structure, Enum or Module.
The following error message is on the line Implements IAppointmentFactory
Error 2 Class 'CustomAppointmentFactory' must implement 'Function CreateNewAppointment() As IEvent' for interface 'Telerik.WinControls.UI.IAppointmentFactory'.
And thrid error is String constant expected on the line #region IAppointmentFactory Member
I have referenced the necassary dlls. I am using VS2005.
Thanks
JJ