rename the export homework button

This commit is contained in:
Tim Young 2017-08-05 16:56:25 -05:00
parent 9905d2e2cb
commit e612b8eb29
2 changed files with 13 additions and 13 deletions

View File

@ -66,7 +66,7 @@
this.btnHWGive = new System.Windows.Forms.Button(); this.btnHWGive = new System.Windows.Forms.Button();
this.btnHWSave = new System.Windows.Forms.Button(); this.btnHWSave = new System.Windows.Forms.Button();
this.btnAllHomeworkToStudents = new System.Windows.Forms.Button(); this.btnAllHomeworkToStudents = new System.Windows.Forms.Button();
this.btnExportAllHomework = new System.Windows.Forms.Button(); this.btnExportHomework = new System.Windows.Forms.Button();
this.btnReadAllStudentHomework = new System.Windows.Forms.Button(); this.btnReadAllStudentHomework = new System.Windows.Forms.Button();
this.tcTabControl.SuspendLayout(); this.tcTabControl.SuspendLayout();
this.TabProfile.SuspendLayout(); this.TabProfile.SuspendLayout();
@ -176,7 +176,7 @@
// //
// tabClass // tabClass
// //
this.tabClass.Controls.Add(this.btnExportAllHomework); this.tabClass.Controls.Add(this.btnExportHomework);
this.tabClass.Controls.Add(this.btnGenerateStudentFiles); this.tabClass.Controls.Add(this.btnGenerateStudentFiles);
this.tabClass.Controls.Add(this.btnImportStudents); this.tabClass.Controls.Add(this.btnImportStudents);
this.tabClass.Location = new System.Drawing.Point(4, 25); this.tabClass.Location = new System.Drawing.Point(4, 25);
@ -464,15 +464,15 @@
this.btnAllHomeworkToStudents.UseVisualStyleBackColor = true; this.btnAllHomeworkToStudents.UseVisualStyleBackColor = true;
this.btnAllHomeworkToStudents.Click += new System.EventHandler(this.btnAllHomeworkToStudents_Click); this.btnAllHomeworkToStudents.Click += new System.EventHandler(this.btnAllHomeworkToStudents_Click);
// //
// btnExportAllHomework // btnExportHomework
// //
this.btnExportAllHomework.Location = new System.Drawing.Point(6, 64); this.btnExportHomework.Location = new System.Drawing.Point(6, 64);
this.btnExportAllHomework.Name = "btnExportAllHomework"; this.btnExportHomework.Name = "btnExportHomework";
this.btnExportAllHomework.Size = new System.Drawing.Size(152, 23); this.btnExportHomework.Size = new System.Drawing.Size(152, 23);
this.btnExportAllHomework.TabIndex = 8; this.btnExportHomework.TabIndex = 8;
this.btnExportAllHomework.Text = "Export Homework"; this.btnExportHomework.Text = "Export Homework";
this.btnExportAllHomework.UseVisualStyleBackColor = true; this.btnExportHomework.UseVisualStyleBackColor = true;
this.btnExportAllHomework.Click += new System.EventHandler(this.btnExportAllHomework_Click); this.btnExportHomework.Click += new System.EventHandler(this.btnExportHomework_Click);
// //
// btnReadAllStudentHomework // btnReadAllStudentHomework
// //
@ -548,7 +548,7 @@
private System.Windows.Forms.Button btnGenerateStudentFiles; private System.Windows.Forms.Button btnGenerateStudentFiles;
private System.Windows.Forms.Button btnHWSave; private System.Windows.Forms.Button btnHWSave;
private System.Windows.Forms.Button btnHWGive; private System.Windows.Forms.Button btnHWGive;
private System.Windows.Forms.Button btnExportAllHomework; private System.Windows.Forms.Button btnExportHomework;
private System.Windows.Forms.Button btnAllHomeworkToStudents; private System.Windows.Forms.Button btnAllHomeworkToStudents;
private System.Windows.Forms.Button btnReadAllStudentHomework; private System.Windows.Forms.Button btnReadAllStudentHomework;
} }

View File

@ -92,7 +92,7 @@ namespace EduNetworkBuilder
myTooltip.SetToolTip(btnHWGive, NB.Translate("PPF_HWGiveToolTip")); myTooltip.SetToolTip(btnHWGive, NB.Translate("PPF_HWGiveToolTip"));
myTooltip.SetToolTip(btnHWSave, NB.Translate("PPF_HWSaveToolTip")); myTooltip.SetToolTip(btnHWSave, NB.Translate("PPF_HWSaveToolTip"));
myTooltip.SetToolTip(btnAllHomeworkToStudents, "Take all currently defined homework and put it into the student accounts. Do at the beginning of a class and before you generate the student files for the first time."); myTooltip.SetToolTip(btnAllHomeworkToStudents, "Take all currently defined homework and put it into the student accounts. Do at the beginning of a class and before you generate the student files for the first time.");
myTooltip.SetToolTip(btnExportAllHomework, "Export all the homework into a single homework file. Use this file to set up for another class."); myTooltip.SetToolTip(btnExportHomework, "Export all the homework into a single homework file. Use this file to set up for another class.");
if (CurrentUser == null && FileName == "") if (CurrentUser == null && FileName == "")
{ {
@ -825,7 +825,7 @@ namespace EduNetworkBuilder
NB.NotImplimentedMessage(); NB.NotImplimentedMessage();
} }
private void btnExportAllHomework_Click(object sender, EventArgs e) private void btnExportHomework_Click(object sender, EventArgs e)
{ {
NB.NotImplimentedMessage(); NB.NotImplimentedMessage();
} }