C# Custom Calendar System - Design Advice
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
In C# I'm making a calendar using the calendar using the MonthCalendar tool. I've designed the objects that serve as weekly lessons (appointments), and within those lessons are a list of names that can be marked as present or absent.
My issue now is, how to I create instances of the appointments across the entire calendar efficiently and correctly?
When the calendar is first opened, I use this code for testing:
public Schedule(BindingList<Lesson> lessons, BindingList<Student> students)
{
InitializeComponent();
LoadData();
allLessons = lessons;
allStudents = students;
CreateInstances();
}
//this needs to be massively reworked into efficient loops to check for duplicates after saving/loading is implemented
public void CreateInstances()
{
foreach (Lesson l in allLessons)
{
DateTime date = new DateTime();
date = DateTime.Now;
while (date.DayOfWeek.ToString() != l.Day)
{
date = date.AddDays(1);
}
List<Student> absent = new List<Student>();
List<Student> attend = new List<Student>();
foreach (Student s in l.Members)
{
attend.Add(s);
}
i1 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend, absent);
bool exists = false;
foreach (LessonInstance p in allInstances)
{
if (p.LessonTime.Day == i1.LessonTime.Day && p.ID == i1.ID)
{
exists = true;
}
}
if (!exists)
{
allInstances.Add(i1);
}
date = date.AddDays(7);
List<Student> absent2 = new List<Student>();
List<Student> attend2 = new List<Student>();
foreach (Student s in l.Members)
{
attend2.Add(s);
}
i2 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend2, absent2);
allInstances.Add(i2);
date = date.AddDays(7);
List<Student> absent3 = new List<Student>();
List<Student> attend3 = new List<Student>();
foreach (Student s in l.Members)
{
attend3.Add(s);
}
i3 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend3, absent3);
allInstances.Add(i3);
date = date.AddDays(7);
List<Student> absent4 = new List<Student>();
List<Student> attend4 = new List<Student>();
foreach (Student s in l.Members)
{
attend4.Add(s);
}
LessonInstance i4 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend4, absent4);
allInstances.Add(i4);
}
}
It's really messy and limited. How could I best create instances that extend far into the future, respond to newly created weekly lessons, and are persistent? Just some general advice would be very helpful. Thanks in advance.
c# calendar
add a comment |
In C# I'm making a calendar using the calendar using the MonthCalendar tool. I've designed the objects that serve as weekly lessons (appointments), and within those lessons are a list of names that can be marked as present or absent.
My issue now is, how to I create instances of the appointments across the entire calendar efficiently and correctly?
When the calendar is first opened, I use this code for testing:
public Schedule(BindingList<Lesson> lessons, BindingList<Student> students)
{
InitializeComponent();
LoadData();
allLessons = lessons;
allStudents = students;
CreateInstances();
}
//this needs to be massively reworked into efficient loops to check for duplicates after saving/loading is implemented
public void CreateInstances()
{
foreach (Lesson l in allLessons)
{
DateTime date = new DateTime();
date = DateTime.Now;
while (date.DayOfWeek.ToString() != l.Day)
{
date = date.AddDays(1);
}
List<Student> absent = new List<Student>();
List<Student> attend = new List<Student>();
foreach (Student s in l.Members)
{
attend.Add(s);
}
i1 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend, absent);
bool exists = false;
foreach (LessonInstance p in allInstances)
{
if (p.LessonTime.Day == i1.LessonTime.Day && p.ID == i1.ID)
{
exists = true;
}
}
if (!exists)
{
allInstances.Add(i1);
}
date = date.AddDays(7);
List<Student> absent2 = new List<Student>();
List<Student> attend2 = new List<Student>();
foreach (Student s in l.Members)
{
attend2.Add(s);
}
i2 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend2, absent2);
allInstances.Add(i2);
date = date.AddDays(7);
List<Student> absent3 = new List<Student>();
List<Student> attend3 = new List<Student>();
foreach (Student s in l.Members)
{
attend3.Add(s);
}
i3 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend3, absent3);
allInstances.Add(i3);
date = date.AddDays(7);
List<Student> absent4 = new List<Student>();
List<Student> attend4 = new List<Student>();
foreach (Student s in l.Members)
{
attend4.Add(s);
}
LessonInstance i4 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend4, absent4);
allInstances.Add(i4);
}
}
It's really messy and limited. How could I best create instances that extend far into the future, respond to newly created weekly lessons, and are persistent? Just some general advice would be very helpful. Thanks in advance.
c# calendar
Ever thought of saving the info(appointments) in databases ? or atleast in XML/JSON/Or even a basic text file?
– zack raiyan
Nov 22 '18 at 4:24
add a comment |
In C# I'm making a calendar using the calendar using the MonthCalendar tool. I've designed the objects that serve as weekly lessons (appointments), and within those lessons are a list of names that can be marked as present or absent.
My issue now is, how to I create instances of the appointments across the entire calendar efficiently and correctly?
When the calendar is first opened, I use this code for testing:
public Schedule(BindingList<Lesson> lessons, BindingList<Student> students)
{
InitializeComponent();
LoadData();
allLessons = lessons;
allStudents = students;
CreateInstances();
}
//this needs to be massively reworked into efficient loops to check for duplicates after saving/loading is implemented
public void CreateInstances()
{
foreach (Lesson l in allLessons)
{
DateTime date = new DateTime();
date = DateTime.Now;
while (date.DayOfWeek.ToString() != l.Day)
{
date = date.AddDays(1);
}
List<Student> absent = new List<Student>();
List<Student> attend = new List<Student>();
foreach (Student s in l.Members)
{
attend.Add(s);
}
i1 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend, absent);
bool exists = false;
foreach (LessonInstance p in allInstances)
{
if (p.LessonTime.Day == i1.LessonTime.Day && p.ID == i1.ID)
{
exists = true;
}
}
if (!exists)
{
allInstances.Add(i1);
}
date = date.AddDays(7);
List<Student> absent2 = new List<Student>();
List<Student> attend2 = new List<Student>();
foreach (Student s in l.Members)
{
attend2.Add(s);
}
i2 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend2, absent2);
allInstances.Add(i2);
date = date.AddDays(7);
List<Student> absent3 = new List<Student>();
List<Student> attend3 = new List<Student>();
foreach (Student s in l.Members)
{
attend3.Add(s);
}
i3 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend3, absent3);
allInstances.Add(i3);
date = date.AddDays(7);
List<Student> absent4 = new List<Student>();
List<Student> attend4 = new List<Student>();
foreach (Student s in l.Members)
{
attend4.Add(s);
}
LessonInstance i4 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend4, absent4);
allInstances.Add(i4);
}
}
It's really messy and limited. How could I best create instances that extend far into the future, respond to newly created weekly lessons, and are persistent? Just some general advice would be very helpful. Thanks in advance.
c# calendar
In C# I'm making a calendar using the calendar using the MonthCalendar tool. I've designed the objects that serve as weekly lessons (appointments), and within those lessons are a list of names that can be marked as present or absent.
My issue now is, how to I create instances of the appointments across the entire calendar efficiently and correctly?
When the calendar is first opened, I use this code for testing:
public Schedule(BindingList<Lesson> lessons, BindingList<Student> students)
{
InitializeComponent();
LoadData();
allLessons = lessons;
allStudents = students;
CreateInstances();
}
//this needs to be massively reworked into efficient loops to check for duplicates after saving/loading is implemented
public void CreateInstances()
{
foreach (Lesson l in allLessons)
{
DateTime date = new DateTime();
date = DateTime.Now;
while (date.DayOfWeek.ToString() != l.Day)
{
date = date.AddDays(1);
}
List<Student> absent = new List<Student>();
List<Student> attend = new List<Student>();
foreach (Student s in l.Members)
{
attend.Add(s);
}
i1 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend, absent);
bool exists = false;
foreach (LessonInstance p in allInstances)
{
if (p.LessonTime.Day == i1.LessonTime.Day && p.ID == i1.ID)
{
exists = true;
}
}
if (!exists)
{
allInstances.Add(i1);
}
date = date.AddDays(7);
List<Student> absent2 = new List<Student>();
List<Student> attend2 = new List<Student>();
foreach (Student s in l.Members)
{
attend2.Add(s);
}
i2 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend2, absent2);
allInstances.Add(i2);
date = date.AddDays(7);
List<Student> absent3 = new List<Student>();
List<Student> attend3 = new List<Student>();
foreach (Student s in l.Members)
{
attend3.Add(s);
}
i3 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend3, absent3);
allInstances.Add(i3);
date = date.AddDays(7);
List<Student> absent4 = new List<Student>();
List<Student> attend4 = new List<Student>();
foreach (Student s in l.Members)
{
attend4.Add(s);
}
LessonInstance i4 = new LessonInstance(allInstances.Count + 1, l.Lvl, l.Day, l.Hour, l.Minute, date, l.Teacher, l.Room, l.Members, attend4, absent4);
allInstances.Add(i4);
}
}
It's really messy and limited. How could I best create instances that extend far into the future, respond to newly created weekly lessons, and are persistent? Just some general advice would be very helpful. Thanks in advance.
c# calendar
c# calendar
asked Nov 22 '18 at 4:16
ArcasterArcaster
264
264
Ever thought of saving the info(appointments) in databases ? or atleast in XML/JSON/Or even a basic text file?
– zack raiyan
Nov 22 '18 at 4:24
add a comment |
Ever thought of saving the info(appointments) in databases ? or atleast in XML/JSON/Or even a basic text file?
– zack raiyan
Nov 22 '18 at 4:24
Ever thought of saving the info(appointments) in databases ? or atleast in XML/JSON/Or even a basic text file?
– zack raiyan
Nov 22 '18 at 4:24
Ever thought of saving the info(appointments) in databases ? or atleast in XML/JSON/Or even a basic text file?
– zack raiyan
Nov 22 '18 at 4:24
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53423827%2fc-sharp-custom-calendar-system-design-advice%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53423827%2fc-sharp-custom-calendar-system-design-advice%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Ever thought of saving the info(appointments) in databases ? or atleast in XML/JSON/Or even a basic text file?
– zack raiyan
Nov 22 '18 at 4:24