private void dgvStatistic_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) { if (dgvStatistic.Columns[e.ColumnIndex].Name == "maHS") { if (e.Value != null) { int id = (int)e.Value; HocSinh st = statisticBus.getStudentByID(id); e.Value = st.hoTenHS; } } if (dgvStatistic.Columns[e.ColumnIndex].Name == "maMH") { if (e.Value != null) { int id = (int)e.Value; MonHoc subject = statisticBus.getSubjectByID(id); e.Value = subject.tenMH; } } }
private void btnLuu_Click(object sender, EventArgs e) { //Kiểm tra thông tin có trống không. if (String.IsNullOrEmpty(txtTenMonHoc.Text)) { MessageBox.Show("Không được để trống thông tin."); return; } MonHoc monHoc = new MonHoc(); monHoc.MaMon = txtMaMonHoc.Text; monHoc.TenMon = txtTenMonHoc.Text; monHoc.SoTiet = (int)numSoTiet.Value; //Kiểm tra xem sửa thành công hay không. if (!monHocBUS.Update(monHoc)) { MessageBox.Show("Sửa môn học không thành công."); return; } //Tải lại dữ liệu. QuanLyMonHocGUI_Load(sender, e); //Đưa trạng thái các nut và TextBox về ban đầu. btnHuy_Click(sender, e); }
private void button6_Click(object sender, EventArgs e) { MonHoc f = new MonHoc(); f.Show(); }
private void quảnLýMônHọcToolStripMenuItem_Click(object sender, EventArgs e) { MonHoc f = new MonHoc(); f.Show(); }
private void mônHọcToolStripMenuItem_Click(object sender, EventArgs e) { MonHoc mh = new MonHoc(); mh.Show(); }