by MindFusion Group - Product Type: Component / .NET WinForms / .NET Class / 100% Managed Code
I downloaded the trial version of MindFusion Scheduling and am trying to work thru the tutorials - tutorial 2 has the following code to be inserted
Recurrence rec = new Recurrence();
rec.Pattern = RecurrencePattern.Weekly;
rec.DaysOfWeek = DaysOfWeek.Monday | DaysOfWeek.Wednesday;
rec.Weeks = 2;
rec.StartDate = new DateTime(2006, 1, 10);
rec.StartHour = 14;
rec.StartMinute = 0;
rec.EndHour = 16;
rec.EndMinute = 30;
rec.RecurrenceEnd = RecurrenceEnd.Never;
app.Recurrence = rec;
The rec.StartHour, rec.StartMinute, rec.EndHour, and rec.EndMinute give errors - the rec object has not property of any of these names
Any help would be appreciated
Reply