コード例 #1
0
        private void btnCreate_Click(object sender, EventArgs e)
        {
            FormProfileCE f = new FormProfileCE();

            // f.MdiParent = this.MdiParent;

            // Hien form Create len va doi cho den khi form bi tat di
            f.ShowDialog();

            // Load lai bang sau khi form Create da tat
            LoadDataGridView();
        }
コード例 #2
0
        private void btnEdit_Click(object sender, EventArgs e)
        {
            // Lay tai khoan admin dang duoc chon trong bang
            Profile profile = GetSelectedProfile();

            // Neu hien tai khong co tai khoan nao duoc chon thi hien thong bao
            if (profile == null)
            {
                MessageBox.Show("You must choose an account to edit!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                return;
            }

            // Neu co tai khoan dang duoc chon thi hien form chinh sua thong tin len, truyen du lieu qua
            FormProfileCE f = new FormProfileCE(profile, HelperClass.FormMode.EDIT);

            // f.MdiParent = this.MdiParent;

            // Hien form Edit len va doi cho den khi form bi tat di
            f.ShowDialog();

            // Load lai bang sau khi form Edit da tat
            LoadDataGridView();
        }