Exemple #1
0
        static void showCv()
        {
            CourseView cv = new CourseView();

            cv.Show();
            MessageBox.Show("New course added!");
        }
Exemple #2
0
 private void CourseAdd_FormClosed(object sender, FormClosedEventArgs e)
 {
     // if the editing is true
     // and the form has been closed, it will open the view course form
     if (this.edit == true)
     {
         CourseView vv = new CourseView();
         vv.Show();
         vv.TopMost = true;
     }
 }
Exemple #3
0
        private void courseView_Click(object sender, EventArgs e)
        {
            CourseView course = new CourseView();

            course.Show();
        }