SI no hay más columnas editables después de la que se edita (porque lo impiden los :bEditWhen), xBrowse no salta a la siguiente línea con MOVE_FAST_RIGHT, como lo hace desde la última columna cuando es editable.
Solución:
En el METHOD GoNextCtrl(hWnd) CLASS TXBrowse
Saludos.
Solución:
En el METHOD GoNextCtrl(hWnd) CLASS TXBrowse
if ::lFastEdit
DO CASE
CASE ::nMoveType == MOVE_FAST_RIGHT
// This is the standard default post cursor movement behavior in Fast Edit Mode
nNextPos := 0
if ::nColSel < Len( ::aDisplay )
//nNextPos := AScan( ::aDisplay, { |i| ::aCols[ i ]:nEditType > 0 }, ::nColSel + 1 ) // comentar
nNextPos := AScan( ::aDisplay, { |i| ::aCols[ i ]:lEditable }, ::nColSel + 1 ) // agregar
endifSaludos.