private void btnCapNhat_Click(object sender, EventArgs e)
 {
     try
     {
         MemoryStream ms = new MemoryStream();
         ptbAnh.Image.Save(ms, ptbAnh.Image.RawFormat);
         byte[] b = ms.GetBuffer();
         ms.Close();
         LopXuLyDuLieu.QuanLyThucDon x = new LopXuLyDuLieu.QuanLyThucDon();
         x.CapNhatMon(txtMaMon.Text, txtTenMon.Text, cbLoai.Text, txtGia.Text, b, ref err);
         MessageBox.Show("Đã Cập Nhật Xong!!!");
     }
     catch (SqlException)
     {
         MessageBox.Show("Lỗi Rồi!!!");
     }
 }
 private void btnThem_Click(object sender, EventArgs e)
 {
     try
     {
         if (img.Length > 1)
         {
             LopXuLyDuLieu.QuanLyThucDon x = new LopXuLyDuLieu.QuanLyThucDon();
             x.ThemMon(txtMaMon.Text, txtTenMon.Text, cbLoai.Text, txtGia.Text, bytes, ref err);
             MessageBox.Show("Đã Thêm Xong!!!");
         }
         else
         {
             MessageBox.Show("Thiếu Ảnh");
         }
     }
     catch (SqlException)
     {
         MessageBox.Show("Lỗi rồi !!!");
     }
 }