Ejemplo n.º 1
0
        private void textBox1_TextChanged(object sender, EventArgs e)
        {
            BUS_TaiXe tx = new BUS_TaiXe();

            if (string.IsNullOrEmpty(txtTraCuu.Text))
            {
                dgvTraCuu.DataSource = tx.LoadTaiXe();
            }
            else
            {
                dgvTraCuu.DataSource = tx.TimTaiXe(txtTraCuu.Text);
            }
        }
Ejemplo n.º 2
0
        private void btnThem_Click(object sender, EventArgs e)
        {
            if (KTRONG() == false)
            {
                return;
            }
            else
            {
                TaiXe tai_xe = new TaiXe();
                tai_xe.id_taixe = txtId.Text;
                tai_xe.tentaixe = txtHT.Text;
                tai_xe.banglai  = txtBL.Text;
                BUS_TaiXe busTx = new BUS_TaiXe();

                if (txtId.Enabled == true)
                {
                    if (busTx.ThemTaiXe(tai_xe) == 1)
                    {
                        FormTaiXe qltx = new FormTaiXe();
                        busTx.LoadTaiXe();
                        this.Close();
                    }
                    else if (busTx.ThemTaiXe(tai_xe) == -1)
                    {
                        MessageBox.Show("Không Được Trùng ID");
                        return;
                    }
                    else
                    {
                        MessageBox.Show("Không Thêm Được");
                        return;
                    }
                }
                else
                {
                    if (busTx.SuaTaiXe(tai_xe) == 1)
                    {
                        FormQLXe qlXe = new FormQLXe();
                        qlXe.LoadQLXe();
                        this.Close();
                    }
                    else
                    {
                        MessageBox.Show("Không Sửa Được");
                        return;
                    }
                }
                txtId.Enabled = true;
            }
        }
Ejemplo n.º 3
0
        private void frmHOTRO_TaiXe_Load(object sender, EventArgs e)
        {
            BUS_TaiXe tx = new BUS_TaiXe();

            dgvTraCuu.DataSource = tx.LoadTaiXe();
        }
Ejemplo n.º 4
0
        public void LoadQLTX()
        {
            BUS_TaiXe tai_xe = new BUS_TaiXe();

            dgvQLTX.DataSource = tai_xe.LoadTaiXe();
        }