private void btnHuy_Click(object sender, EventArgs e) { this.Hide(); FNuocSX fnuocsx = new FNuocSX(); fnuocsx.main = main; fnuocsx.MdiParent = main; fnuocsx.Show(); }
private void nướcSảnXuấtToolStripMenuItem_Click(object sender, EventArgs e) { Form form = CheckTonTai(typeof(FNuocSX)); if (form != null) { form.Activate(); } else { FNuocSX newform = new FNuocSX(); newform.MdiParent = this; newform.main = this; newform.Show(); } }
private void btnThucHien_Click(object sender, EventArgs e) { if (labTacVu.Text == "Thêm") { if (txtMaNuocSX.Text != "") { if (txtTenNuocSX.Text != "") { try { //byte[] imageData = ReadFile(lbimgpath.Text); NuocSX.MaNuocSX = txtMaNuocSX.Text; NuocSX.TenNuocSX = txtTenNuocSX.Text; Act.AddNuocSX(NuocSX); AutoID.UpdateAutoID(9); MessageBox.Show("Đã thêm Thành Công", "Chú Ý", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show(ex.ToString(), "Chú Ý", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { MessageBox.Show("Tên không được để trống", "Chú Ý", MessageBoxButtons.OK); txtTenNuocSX.Focus(); } } else { MessageBox.Show("Mã không được để trống", "Chú Ý", MessageBoxButtons.OK); txtMaNuocSX.Focus(); } } else if (labTacVu.Text == "Sửa") { if (txtTenNuocSX.Text != "") { try { //byte[] imageData = ReadFile(lbimgpath.Text); NuocSX.MaNuocSX = txtMaNuocSX.Text; NuocSX.TenNuocSX = txtTenNuocSX.Text; Act.UpdateNuocSX(NuocSX); MessageBox.Show("Đã sửa Thành Công", "Chú Ý", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show(ex.ToString(), "Chú Ý", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { MessageBox.Show("Tên không được để trống", "Chú Ý", MessageBoxButtons.OK); txtTenNuocSX.Focus(); } } else { try { NuocSX.MaNuocSX = txtMaNuocSX.Text; NuocSX.TenNuocSX = txtTenNuocSX.Text; Act.DeleteNuocSX(NuocSX); MessageBox.Show("Đã xóa Thành Công", "Chú Ý", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show(ex.ToString(), "Chú Ý", MessageBoxButtons.OK, MessageBoxIcon.Information); } } this.Hide(); FNuocSX fnuocsx = new FNuocSX(); fnuocsx.main = main; fnuocsx.MdiParent = main; fnuocsx.Show(); }