示例#1
0
        private void btnSua_Click(object sender, EventArgs e)
        {
            string sql;

            if (txtMasothue.Text == "")
            {
                MessageBox.Show("Bạn phải nhập mã số thuê", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                txtMasothue.Focus();
                return;
            }
            if (cmbKhach.Text == "")
            {
                MessageBox.Show("Bạn phải chọn khách thuê ", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            if (cmbNha.Text == "")
            {
                MessageBox.Show("Bạn phải chọn nhà", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                cmbNha.Focus();
                return;
            }
            if (cmbMucdich.Text == "")
            {
                MessageBox.Show("Bạn phải chọn mục đích sử dụng", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                cmbMucdich.Focus();
                return;
            }
            if (dtpNgaybatdau.Text == "")
            {
                MessageBox.Show("Bạn phải nhập ngày bắt đầu", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                dtpNgaybatdau.Focus();
                return;
            }
            if (dtpNgayketthuc.Text == "")
            {
                MessageBox.Show("Bạn phải nhập ngày kết thúc", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                dtpNgayketthuc.Focus();
                return;
            }
            if (txtTiendatcoc.Text == "")
            {
                MessageBox.Show("Bạn phải nhập số tiền đặt cọc", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                txtTiendatcoc.Focus();
                return;
            }
            if (cmbHinhthucthanhtoan.Text == "")
            {
                MessageBox.Show("Bạn phải chọn hình thức thanh toán", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                cmbHinhthucthanhtoan.Focus();
                return;
            }
            sql = "UPDATE tblThueNha SET  Makhach='" + cmbKhach.SelectedValue.ToString() + "',Manha =N'" + cmbNha.SelectedValue.ToString() + "',MamucdichSD='"
                  + cmbMucdich.SelectedValue.ToString() + "',NgayBD=N'" + DAO.ConvertDateTime(dtpNgaybatdau.Value.ToString("MM/dd/yyyy")) +
                  "',NgayKT=N'" + DAO.ConvertDateTime(dtpNgayketthuc.Value.ToString("MM/dd/yyyy")) + "',Tiendatcoc='"
                  + txtTiendatcoc.Text.Trim() + "',MahinhthucTT='" + cmbHinhthucthanhtoan.SelectedValue.ToString() + "' WHERE Masothue='" + txtMasothue.Text + "'";
            DAO.OpenConnection();
            SqlCommand cmd = new SqlCommand();

            cmd.CommandText = sql;
            cmd.Connection  = DAO.con;
            cmd.ExecuteNonQuery();
            loadDataGridView();
            DAO.CloseConnection();
        }
示例#2
0
 private void frmCoquan_Load(object sender, EventArgs e)
 {
     DAO.OpenConnection();
     loadDataGridView();
     DAO.CloseConnection();
 }
示例#3
0
        private void btnLuu_Click(object sender, EventArgs e)
        {
            if (txtMasothue.Text == "")
            {
                MessageBox.Show("Bạn không được để trống mã số thuê", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                txtMasothue.Focus();
                return;
            }
            if (cmbKhach.SelectedIndex == -1)
            {
                MessageBox.Show("Bạn chưa chọn khách thuê ", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            if (cmbNha.SelectedIndex == -1)
            {
                MessageBox.Show("Bạn chưa chọn nhà", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            if (cmbMucdich.SelectedIndex == -1)
            {
                MessageBox.Show("Bạn chưa chọn mục đích sử dụng ", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            if (dtpNgaybatdau.Text == "")
            {
                MessageBox.Show("Bạn phải nhập ngày bắt đầu", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                dtpNgaybatdau.Focus();
                return;
            }
            if (dtpNgayketthuc.Text == "")
            {
                MessageBox.Show("Bạn phải nhập ngày kết thúc", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                dtpNgayketthuc.Focus();
                return;
            }
            if (txtTiendatcoc.Text == "")
            {
                MessageBox.Show("Bạn không được để trống số tiền đặt cọc", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                txtTiendatcoc.Focus();
                return;
            }
            if (cmbHinhthucthanhtoan.SelectedIndex == -1)
            {
                MessageBox.Show("Bạn chưa chọn hình thức thanh toán ", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            string sql = "select * from tblThueNha where Masothue = '" +
                         txtMasothue.Text.Trim() + "'";

            DAO.OpenConnection();
            if (DAO.CheckKeyExit(sql))
            {
                MessageBox.Show("Mã số thuê đã tồn tại");
                txtMasothue.Focus();
                DAO.CloseConnection();
                return;
            }
            else
            {
                sql = "insert into  tblThueNha (Masothue, Makhach,Manha,MamucdichSD,NgayBD,NgayKT,Tiendatcoc,MahinhthucTT)" +
                      " values ('" + txtMasothue.Text.Trim() + "','" + cmbKhach.SelectedValue.ToString() + "', '"
                      + cmbNha.SelectedValue.ToString() + "','" + cmbMucdich.SelectedValue.ToString() + "',N'"
                      + DAO.ConvertDateTime(dtpNgaybatdau.Text.ToString()) + "',N'" + DAO.ConvertDateTime(dtpNgayketthuc.Text.ToString()) +
                      "','" + txtTiendatcoc.Text.Trim() + "','" + cmbHinhthucthanhtoan.SelectedValue.ToString() + "')";
                SqlCommand cmd = new SqlCommand(sql, DAO.con);
                cmd.ExecuteNonQuery();
                loadDataGridView();
                fillDataToComboKhachthue();
                fillDataToComboDanhmucnha();
                fillDataToComboMucdich();
                fillDataToComboHinhthuc();
                DAO.CloseConnection();
            }
        }
示例#4
0
 private void frmDoituongsudung_Load(object sender, EventArgs e)
 {
     DAO.OpenConnection();
     loadDataGridView();
     DAO.CloseConnection();
 }