Ejemplo n.º 1
0
        public frmViewProgress(int studentID)
        {
            Student student = new Student();

            student      = StudentDB.GetStudentById(studentID);
            this.student = student;
            InitializeComponent();
        }
Ejemplo n.º 2
0
        //Pass the student object to the form and display the student info.
        public frmHomePage(int studentID)
        {
            Student student = new Student();

            student      = StudentDB.GetStudentById(studentID);
            this.student = student;


            InitializeComponent();

            foreach (int i in numOfQuestion)
            {
                cboDrill.Items.Add(i);
            }

            lblWelcome.Text = student.FirstName + " " + student.LastName;

            //lblWelcome.Text = "ABC" + " " + "CDE";
        }