diff --git a/EduNetworkBuilder/PersonProfileForm.cs b/EduNetworkBuilder/PersonProfileForm.cs index dbf601f..0b6be02 100644 --- a/EduNetworkBuilder/PersonProfileForm.cs +++ b/EduNetworkBuilder/PersonProfileForm.cs @@ -827,7 +827,17 @@ namespace EduNetworkBuilder private void btnExportHomework_Click(object sender, EventArgs e) { - NB.NotImplimentedMessage(); + //Generate a list of homework, so we can make a check-box for it... + Dictionary HWList = new Dictionary(); + foreach(SchoolworkClass sc in CurrentUser.Projects) + { + string one = sc.DueDate.ToShortDateString() + " - " + sc.Name; + HWList.Add(one, false); + } + + //Now, make a prompt box for it. + + Dictionary Response = NB.CheckPromptBox(HWList, "Homework to include", Properties.Resources.NBIco); } private void btnReadAllStudentHomework_Click(object sender, EventArgs e)