private void button2_Click(object sender, EventArgs e)
        {
            Student_Profile pro = new Student_Profile();

            this.Hide();
            pro.Show();
        }
Example #2
0
        public void saveData()
        {
            addStudent me = new addStudent();
            try
            {
                if (txtORnumber.Text.Trim() != "" && txtFirstname.Text.Trim() != "" && txtMiddlename.Text.Trim() != "" && txtLastname.Text.Trim() != "" && txtAge.Text.Trim() != "" && cbSex.Text.Trim() != "" && txtAddress.Text.Trim() != "" && dtpDate.Text.Trim() != "")
                {
                    if (MessageBox.Show("Are you sure you want to save this?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
                    {

                        conn.Open();
                        cmd = new OleDbCommand("INSERT INTO examineetbl(orNumber, Fname, Mname, Lname, Age, Sex, Address, ExamDate) VALUES ('" + txtORnumber.Text.Trim() + "', '" + txtFirstname.Text.Trim() + "', '" + txtMiddlename.Text.Trim() + "', '" + txtLastname.Text.Trim() + "', '" + txtAge.Text.Trim() + "', '" + cbSex.Text.Trim() + "', '" + txtAddress.Text.Trim() + "', '" + dtpDate.Value.ToString() + "')", conn);

                        dr = cmd.ExecuteReader();
                        MessageBox.Show("Data Saved");
                        Student_Profile student = new Student_Profile();
                        student.Show();
                        this.Close();

                        if (me.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                        {

                        }
                        dr.Close();

                    }
                }
                else
                {
                    MessageBox.Show("Please Complete The Form");
                }
            }
            catch (OleDbException ex)
            {
                MessageBox.Show("Error in Saving: " + ex.Message);

            }
            finally
            {
                conn.Close();
            }
        }
Example #3
0
        public void saveData()
        {
            addStudent me = new addStudent();

            try
            {
                if (txtORnumber.Text.Trim() != "" && txtFirstname.Text.Trim() != "" && txtMiddlename.Text.Trim() != "" && txtLastname.Text.Trim() != "" && txtAge.Text.Trim() != "" && cbSex.Text.Trim() != "" && txtAddress.Text.Trim() != "" && dtpDate.Text.Trim() != "")
                {
                    if (MessageBox.Show("Are you sure you want to save this?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
                    {
                        conn.Open();
                        cmd = new OleDbCommand("INSERT INTO examineetbl(orNumber, Fname, Mname, Lname, Age, Sex, Address, ExamDate) VALUES ('" + txtORnumber.Text.Trim() + "', '" + txtFirstname.Text.Trim() + "', '" + txtMiddlename.Text.Trim() + "', '" + txtLastname.Text.Trim() + "', '" + txtAge.Text.Trim() + "', '" + cbSex.Text.Trim() + "', '" + txtAddress.Text.Trim() + "', '" + dtpDate.Value.ToString() + "')", conn);

                        dr = cmd.ExecuteReader();
                        MessageBox.Show("Data Saved");
                        Student_Profile student = new Student_Profile();
                        student.Show();
                        this.Close();



                        if (me.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                        {
                        }
                        dr.Close();
                    }
                }
                else
                {
                    MessageBox.Show("Please Complete The Form");
                }
            }
            catch (OleDbException ex)
            {
                MessageBox.Show("Error in Saving: " + ex.Message);
            }
            finally
            {
                conn.Close();
            }
        }
Example #4
0
 private void studentProfileToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Student_Profile student = new Student_Profile();
     student.Show();
 }
Example #5
0
        private void studentProfileToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Student_Profile student = new Student_Profile();

            student.Show();
        }