Hello,
I need to add property (for example : ZoneName) to the appointment class.
I use : description, subject, action, barcolor etc... and i want to add Zonename property.
I try this with inherits appointment but it doesn't works because of sub new problem.
Can you give me a part of code to know how to do ?
TY
Public Class Foo Inherits Appointment
Sub New(ByVal startDateTime As DateTime, ByVal endDateTime As DateTime) MyBase.New(startDateTime, endDateTime) End Sub
End Class