Hi all,
How i can avoid xbrowse jumps to another column when i press <enter>, cause i want to use a enter key to another thing.
Thanks in advance.
Hi all,
How i can avoid xbrowse jumps to another column when i press <enter>, cause i want to use a enter key to another thing.
Thanks in advance.
Have you tried:
oBrw:bKeyChar:=...
Regards,
James
Wanderson wrote:Hi all,
How i can avoid xbrowse jumps to another column when i press <enter>, cause i want to use a enter key to another thing.
Thanks in advance.


 DATA nMoveType;    // 1 Move Right
    AS NUMERIC    // 2 Move Left
            // 3 Move Up
            // 4 Move down
            // 5 No Move
            // 6 Move Right with lFastedit features, only work with lFastEdit := .t.
            // 7 Move left with lFastedit features, only work with lFastEdit := .t.nMoveType:= 5James
In your pre or post xBrowse code blocks you can tell the cursor to go to any column ..
oBrw:nColsel(5) // 5 is the column to jump to
Rick Lipkin