Beyond the team sprint grapefruit attendance system --beta 3

A list of members

Full name student ID
CAI Yu blue (Leader) 201731024205
Zheng Xue 201731024207
HE Yu Jiao 201731024209
Wang Chunlan 201731024211

Two, SCRUM part

(1) Members circumstances
-201,731,024,205
progress 1. Today: combox linkage find a problem, choose a different class will not change course, modified the code

private void comboBox1_SelectedValueChanged(object sender, EventArgs e)
        {
           
            string selectsql = string.Format("select distinct ClassId from CourseSchedules where courseid in (select CourseId from Courses where CourseName = '{0}')", comboBox1.Text.Trim());


            try
            {
                comboBox2.DataSource = null;
                comboBox2.Items.Clear();
                DBHelper.connection.Open();
                SqlCommand comm = new SqlCommand(selectsql, DBHelper.connection);
                SqlDataReader dr = comm.ExecuteReader();
                while (dr.Read())
                {
                    comboBox2.Items.Add(dr["ClassId"].ToString());
                }
            }


            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "操作数据库出错", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            finally
            {
                DBHelper.connection.Close();
            }

        }

2. The problem: limited capacity, modify the code more difficult
3. day Screenshot:
Here Insert Picture Description
Here Insert Picture Description
-201 731 024 207
1. Today's progress: improved information about the database tables and classroom curriculum information
2. Problems: No
3. day Screenshot:
Here Insert Picture Description
Here Insert Picture Description
-201 731 024 209
1 progress today: improving the student information about the database, increasing the number of students in each class.
2. Problems: No
3. day Screenshot:
Here Insert Picture Description
Here Insert Picture Description
-201 731 024 211
1. Progress today: to review and improve the database, and some parts of the code and test.
2. there is a problem: code testing time consuming
3. day shots: None
(2) SCRUM meeting to discuss Photo
Here Insert Picture Description

Three, PM report

(1) project is expected to assignments

Task expected amount It has spent time Time left
32 32 0

(2) burndown
Here Insert Picture Description

Guess you like

Origin www.cnblogs.com/jiao54/p/11937283.html
Recommended