Hi friends, as per subject. ![]()
Any ideas?
EMG
Hi friends, as per subject. ![]()
Any ideas?
EMG
......
oCol:bOnPostEdit = { | oCol, xVal, nKey | If( nKey == VK_RETURN, (....,oBrw:GoToCol( oCol )) ,) }
.....Thank you. Unfortunately, it doesn't work. ![]()
EMG
Any help? I really need this, please.
EMG
LOCAL nColPos := 1
...
...
WITH OBJECT oBrw
FOR I := 1 TO 5 // total defined columns
:aCols[I]:nEditType := EDIT_GET
:aCols[I]:bOnPostEdit := { | oCol, xVal, nKey | ;
nColPos := oBrw:SelectedCol():nCreationOrder, ;
oBrw:SelectCol(nColPos) }
NEXT
oBrw:CreateFromCode()
ENDUnfortunately, I need this without using EDIT_GET. ![]()
EMG
Have you tried with lEnterKey2Edit := .T. and/or nMoveType := 5 ?
Sorry, it doesn't work. Selection keeps moving right when I press Enter. ![]()
EMG
Have you tried with lEnterKey2Edit := .T. and/or nMoveType := 5 ?
oBrw:bKeyChar := { |n| If( n == VK_RETURN, 0, nil ) }o:nEditType := 0Great Rao, it works! Many thanks! ![]()
EMG