private void btnNuevo_Click(object sender, EventArgs e) { C_Usuario.IdUsuario = 0; Usuario_Dialog m = new Usuario_Dialog(); m.ShowDialog(); datostabla(""); }
private void btnModificar_Click(object sender, EventArgs e) { if (dgvUser.SelectedRows.Count > 0) { C_Usuario.IdUsuario = Int32.Parse(dgvUser.CurrentRow.Cells[0].Value.ToString()); C_Usuario.nom = dgvUser.CurrentRow.Cells[1].Value.ToString(); C_Usuario.usu = dgvUser.CurrentRow.Cells[2].Value.ToString(); C_Usuario.cla = dgvUser.CurrentRow.Cells[3].Value.ToString(); //MessageBox.Show(objC.Nombre); using (Usuario_Dialog m = new Usuario_Dialog()) { m.ShowDialog(); datostabla(""); } } else { MessageBox.Show("Seleccione la tabla que desea editar"); } }