intenté con
Código:
pero no me váDataGridView.Rows.IndexOf = numLinea
Gracias.
| |||
DatagridView selecionar línea tengo un datagridview y me gustaría seleccionar una linea especifica de ella pero por código.. como lo puedo hacer ? intenté con
Código:
pero no me váDataGridView.Rows.IndexOf = numLinea Gracias. |
| |||
Respuesta: DatagridView selecionar línea gracias por la respuesta.. la verdad es que he intentado el método de binding antes pero tuve malas experiencias. no hay manera de seleccionar solo la línea, no para alguna variable ni nada, solo seleccionarla como si fuera el usuario a poner el ratón encima y hacer 1 click.
Código:
si hago como ahí me salta el error:Dim lastRow As Integer = DGV.RowCount - 1 editar.Show() editar.txtID.Text = DGV.CurrentRow.Cells(0).Value.ToString editar.txtID.Text = DGV.Rows(lastRow).Cells(0).Value.ToString editar.txtCodigo.Text = DGV.Rows(lastRow).Cells(1).Value.ToString editar.txtDesc.Text = DGV.Rows(lastRow).Cells(2).Value.ToString editar.txtData.Text = DGV.Rows(lastRow).Cells(3).Value.ToString editar.txtPercentagem.Text = DGV.Rows(lastRow).Cells(4).Value.ToString editar.txtMedia.Text = DGV.Rows(lastRow).Cells(5).Value.ToString System.NullReferenceException - {"Object reference not set to an instance of an object."} ya probé com:
Código:
pero tampoco me fue >_>DGV.Rows(lastRow).Selected = True perdon por estar insistiendo ^^' |
| ||||
Respuesta: DatagridView selecionar línea Primero verifica que se este seleccionando una fila y columan si no existe la fila 4 da error me.grdView.datasource.rows(4) si no existe la columan 5 da error me.grdView.datasource.rows(4)(5) Seleccionar dataGrid1.CurrentCell = New DataGridCell(NoRow, NoColumn) dataGrid1.Select(hti.Row) |
Etiquetas: |