private void btnAgregar_Click(object sender, EventArgs e) { EdicionRoles f = new EdicionRoles(); f.lblID.Visible = false; f.txbIdRol.Visible = false; f.lblRol.Margin = new Padding(3, 29, 3, 0); f.txbRol.Margin = new Padding(3, 8, 3, 15); f.btnAgregar.Location = new Point(56, 136); f.btnCancelar.Location = new Point(176, 136); f.ShowDialog(); CargarDatos(); }
private void btnEditar_Click(object sender, EventArgs e) { if (Convert.ToInt32(dtgvDatos.Rows.Count.ToString()) <= 0) { MessageBox.Show("Actualmente no existe ningún registro", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (MessageBox.Show("Desea editar el registro seleccionado?", "Pregunta", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { EdicionRoles f = new EdicionRoles(); //Sincronizando interfaz gráfica con registro seleccionado //(Muestra los datos del registro a editar) f.txbIdRol.Text = dtgvDatos.CurrentRow.Cells["idrol"].Value.ToString(); f.txbRol.Text = dtgvDatos.CurrentRow.Cells["rol"].Value.ToString(); f.ShowDialog(); CargarDatos(); } } }