Beispiel #1
0
        //
        // BUTTONS
        //

        // Add role
        private void btnAdd_Click(object sender, EventArgs e)
        {
            EditForms.RoleEditForm childForm = new EditForms.RoleEditForm();

            childForm.Owner = this;
            childForm.ShowDialog();
        }
Beispiel #2
0
        // Edit role
        private void btnEdit_Click(object sender, EventArgs e)
        {
            if (dgvRoles.SelectedRows.Count <= 0)
            {
                return;
            }

            EditForms.RoleEditForm childForm = new EditForms.RoleEditForm();

            childForm.txbID.Text   = dgvRoles.SelectedRows[0].Cells["rlsID"].Value.ToString();
            childForm.txbName.Text = dgvRoles.SelectedRows[0].Cells["rlsName"].Value.ToString();

            childForm.Owner = this;
            childForm.ShowDialog();
        }