示例#1
0
        public frmHome_sddv()
        {
            InitializeComponent();

            if (frmMain.idlogin != "1" && frmMain.idlogin != "2" && frmMain.idlogin != "3")
            {
                if (XtraMessageBox.Show("Bạn chưa phải là khách hàng? Bạn có muốn đăng ký?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                {
                    frmThemkh them = new frmThemkh();
                    them.Show();
                    if (them.IsDisposed == false)
                    {
                        if (XtraMessageBox.Show("Tên đăng nhập và mật khẩu của bạn : " + frmThemkh.makh, "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                        {
                            frmLogin login = new frmLogin();
                            login.Show();
                        }
                    }
                }
            }

            var query2 = (from n in dl.DichVus select n.TenDV);

            foreach (string item in query2)
            {
                cbTendv.Items.Add(item);
            }
        }
示例#2
0
        private void btnThem_Click(object sender, EventArgs e)
        {
            frmThemkh themkh = null;

Check_Them:
            if (themkh == null || themkh.IsDisposed)
            {
                themkh = new frmThemkh();
            }
            if (themkh.ShowDialog() == DialogResult.OK)
            {
                if (frmThemkh.x == 0)
                {
                    goto Check_Them;
                }
            }
            dataGridView1.DataSource = db.get_kh();
        }