
evento KeyPress DataGrid
Publicado por JCarlos (3 intervenciones) el 10/05/2014 02:48:30
Buenas estoy tratando de que al presionar 2 teclas en la celda dos me pase a la siguiente fila para eso uso
Dim x As Integer = Dt.CurrentRow.Index
If e.KeyChar = Chr(1) Then
Dt.CurrentCell.Selected = False
Dt.Rows(x).Cells(1).Selected = True
End If
pero no me funciona agradesco la ayuda
Dim x As Integer = Dt.CurrentRow.Index
If e.KeyChar = Chr(1) Then
Dt.CurrentCell.Selected = False
Dt.Rows(x).Cells(1).Selected = True
End If
pero no me funciona agradesco la ayuda
Valora esta pregunta


0