Beispiel #1
0
        private void cmdDelete_Click(object sender, EventArgs e)
        {
            Student s = new Student();

            s.STUD_ID = txtSTUD_ID.Text;
            StudentDB.Delete(s);
        }
Beispiel #2
0
        private void cmdAdd_Click(object sender, EventArgs e)
        {
            Student s = new Student();

            s.STUD_ID       = txtSTUD_ID.Text;
            s.STUD_FIRST_NM = txtSTUD_FIRST_NM.Text;
            s.STUD_LAST_NM  = txtSTUD_LAST_NM.Text;
            s.STUD_GPA      = txtGPA.Text;
            s.STUD_MAJOR_CD = txtMAJOR_CD.Text;
            s.STUD_DOB      = txtDOB.Text;

            StudentDB.Add(s);
        }
Beispiel #3
0
        private void cmdList_Click(object sender, EventArgs e)
        {
            Student s = new Student();

            s.STUD_LAST_NM = txtSTUD_LAST_NM.Text;

            Student[] students = StudentDB.List(s);

            textBox1.Text = String.Empty;
            if (students != null)
            {
                foreach (Student st in students)
                {
                    textBox1.Text += st.ToString() + "\r\n";
                }
            }
        }
Beispiel #4
0
        private void cmdInquire_Click(object sender, EventArgs e)
        {
            Student s = StudentDB.Inquire(txtSTUD_ID.Text);

            txtSTUD_ID.Text       = s.STUD_ID.TrimEnd();
            txtSTUD_FIRST_NM.Text = s.STUD_FIRST_NM.TrimEnd();
            txtSTUD_LAST_NM.Text  = s.STUD_LAST_NM.TrimEnd();
            txtGPA.Text           = s.STUD_GPA.TrimEnd();
            txtMAJOR_CD.Text      = s.STUD_MAJOR_CD.TrimEnd();
            txtDOB.Text           = s.STUD_DOB.TrimEnd();
            txtUSER_ADD_ID.Text   = s.STUD_ADD_USER_ID.TrimEnd();
            txtSTUD_ADD_DT.Text   = s.STUD_ADD_DT.TrimEnd();
            txtSTUD_ADD_TM.Text   = s.STUD_ADD_TM.TrimEnd();
            txtUSER_CHNG_ID.Text  = s.STUD_CHNG_USER_ID.TrimEnd();
            txtSTUD_CHNG_DT.Text  = s.STUD_CHNG_DT.TrimEnd();
            txtSTUD_CHNG_TM.Text  = s.STUD_CHNG_TM.TrimEnd();
            txtSTUD_DEL_FLG.Text  = s.STUD_DEL_FLG.TrimEnd();
        }
Beispiel #5
0
        private void cmdProcess_Click(object sender, EventArgs e)
        {
            //Student s = StudentDB.Inquire("999999995");

            this.textBox1.Text = StudentDB.Inquire("999999995").ToString();
        }
Beispiel #6
0
        private void cmdUpdate_Click(object sender, EventArgs e)
        {
            Student s = new Student(this.textBox1.Text);

            StudentDB.Update(s);
        }