Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
678
How to add property to appointment class
posted

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

  • 69832
    Offline posted

    Public Class Foo
        Inherits Appointment

        Sub New(ByVal startDateTime As DateTime, ByVal endDateTime As DateTime)
            MyBase.New(startDateTime, endDateTime)
        End Sub

    End Class