private void dgvResultados_CellContentClick(object sender, DataGridViewCellEventArgs e) { DataGridViewRow row = this.dgvResultados.SelectedRows[0]; Usuarios usuario = new Usuarios(); Usuario.ID = Int32.Parse(row.Cells[0].Value.ToString()); Usuario.nombre = row.Cells[1].Value.ToString(); Usuario.Cedula = row.Cells[2].Value.ToString(); Usuario.NumCarnet = Int32.Parse(row.Cells[3].Value.ToString()); Usuario.TipoUsuario = row.Cells[4].Value.ToString(); Usuario.TipoPersona = row.Cells[5].Value.ToString(); Usuario.Estado = row.Cells[6].Value.ToString(); //Usuario.Renta_Dev = row.Cells[7].Value.ToString(); FrmMantUsuario fed = new FrmMantUsuario(); fed.Usuario = Usuario; fed.Show(); }
private void usuariosToolStripMenuItem_Click(object sender, EventArgs e) { FrmMantUsuario frm = new FrmMantUsuario(); frm.ShowDialog(); }