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
320
Recurring Tasks
posted

I'd like to use the Recurrence and Reminder features that are part of the UltraWinSchedule similar to what you get with Outlook.

It looks like the Task class does not include the same properties for Recurrence and Reminders that Appointments do.  Is the best way to implement Recurrence and Reminders just to use the Appointment object?

Task comes with some other useful properties like PercentCompelete, but I've seen other samples that put extra properties in to Appointment.Tag, so I could do the same with properties not included with Appointment by default.

  • 48586
    posted

    Hello, ­­­­­

     

    I am just checking about the progress of this issue. Let me know If you need my further assistance on this  issue?

     

    Thank you for using Infragistics Components.

  • 48586
    Verified Answer
    posted

    Hello,

     

    In Tag property you could storage an object that contains data about the control, which meant that if you have implemented some class or structure which hold additional information (properties) for the control, you will be able to put in Tag property  a instance of this class or structure in order to enhance properties of the control (in your case appointment). More information about Tag property you could find on the following link:

    http://msdn.microsoft.com/en-us/library/system.windows.forms.control.tag.aspx

     

    Outlook works with appointments, so if you want to use Recurrence and Reminder of UltraWinSchedule you should work with Appointment object, and if you need some enhancement like PercentCompelete, you could create a class that contains needed properties and to assign an instance of this class to Tag property of Appointment object for each appointment.

     

    Please let me know if you have any further questions.