Prep messagebox for 15min presentation
This commit is contained in:
parent
b387063c78
commit
5f1ec5e9ee
15
Form1.cs
15
Form1.cs
@ -75,6 +75,9 @@ namespace DBWizard
|
|||||||
*/
|
*/
|
||||||
private void student_pictureBox_DoubleClick(object sender, EventArgs e)
|
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();
|
DialogResult dr = pic_openFileDialog.ShowDialog();
|
||||||
if(dr == DialogResult.OK)
|
if(dr == DialogResult.OK)
|
||||||
{
|
{
|
||||||
@ -495,5 +498,17 @@ namespace DBWizard
|
|||||||
Environment.Exit(0);
|
Environment.Exit(0);
|
||||||
}
|
}
|
||||||
#endregion
|
#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
|
} //Form1
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user