From d5f58e28783cd016ad89c3a8c9e02b9678b03068 Mon Sep 17 00:00:00 2001 From: Tim Young Date: Wed, 2 Aug 2017 16:57:50 -0500 Subject: [PATCH] Mark a few buttons as not yet implimented --- EduNetworkBuilder/PersonProfileForm.Designer.cs | 2 ++ EduNetworkBuilder/PersonProfileForm.cs | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/EduNetworkBuilder/PersonProfileForm.Designer.cs b/EduNetworkBuilder/PersonProfileForm.Designer.cs index 20abc4e..1c048a3 100644 --- a/EduNetworkBuilder/PersonProfileForm.Designer.cs +++ b/EduNetworkBuilder/PersonProfileForm.Designer.cs @@ -460,6 +460,7 @@ this.btnAllHomeworkToStudents.TabIndex = 6; this.btnAllHomeworkToStudents.Text = "All Homework To Students"; this.btnAllHomeworkToStudents.UseVisualStyleBackColor = true; + this.btnAllHomeworkToStudents.Click += new System.EventHandler(this.btnAllHomeworkToStudents_Click); // // btnExportAllHomework // @@ -469,6 +470,7 @@ this.btnExportAllHomework.TabIndex = 8; this.btnExportAllHomework.Text = "Export Homework"; this.btnExportAllHomework.UseVisualStyleBackColor = true; + this.btnExportAllHomework.Click += new System.EventHandler(this.btnExportAllHomework_Click); // // PersonProfileForm // diff --git a/EduNetworkBuilder/PersonProfileForm.cs b/EduNetworkBuilder/PersonProfileForm.cs index 466b244..b06e9c9 100644 --- a/EduNetworkBuilder/PersonProfileForm.cs +++ b/EduNetworkBuilder/PersonProfileForm.cs @@ -811,5 +811,15 @@ namespace EduNetworkBuilder //If we are here, we are ready to save it ViewedSchoolwork.Save(SFD.FileName); } + + private void btnAllHomeworkToStudents_Click(object sender, EventArgs e) + { + NB.NotImplimentedMessage(); + } + + private void btnExportAllHomework_Click(object sender, EventArgs e) + { + NB.NotImplimentedMessage(); + } } } \ No newline at end of file