From 5f1ec5e9ee5b1989d6f31c78eddc17f59cb027fa Mon Sep 17 00:00:00 2001 From: kougyokugentou <41278462+kougyokugentou@users.noreply.github.com> Date: Sat, 9 May 2020 22:09:01 -0700 Subject: [PATCH] Prep messagebox for 15min presentation --- Form1.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Form1.cs b/Form1.cs index 2fa5c1f..33946b9 100644 --- a/Form1.cs +++ b/Form1.cs @@ -75,6 +75,9 @@ namespace DBWizard */ private void student_pictureBox_DoubleClick(object sender, EventArgs e) { + MessageBox.Show("A file picker dialog will show and the user can choose a picture to upload\nIt's not done yet."); + return; + DialogResult dr = pic_openFileDialog.ShowDialog(); if(dr == DialogResult.OK) { @@ -495,5 +498,17 @@ namespace DBWizard Environment.Exit(0); } #endregion + + private void studentBySchoolToolStripMenuItem_Click(object sender, EventArgs e) + { + MessageBox.Show("This function will generate a report of students by school.\nIt's not done yet."); + return; + } + + private void studentsByProgramToolStripMenuItem_Click(object sender, EventArgs e) + { + MessageBox.Show("This function will generate a report of students by program.\nIt's not done yet."); + return; + } } //Form1 }