Is there an option available to prevent this non-Pick result, or is it a bug?The Rocket documentation mentions nothing and falsely states that backspace is excepted.
--
You received this message because you are subscribed to
the "Pick and MultiValue Databases" group.
To post, email to: mvd...@googlegroups.com
To unsubscribe, email to: mvdbms+un...@googlegroups.com
For more options, visit http://groups.google.com/group/mvdbms
---
You received this message because you are subscribed to the Google Groups "Pick and MultiValue Databases" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mvdbms+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mvdbms/af43ba6a-227c-4259-831b-4bb7cd09f4cfn%40googlegroups.com.
I think this example here: https://docs.rocketsoftware.com/bundle/jbase_lib_61/page/btz1666031270568.html
Shows this:
$INCLUDE JBC.h
$INCLUDE jCmdKeys.h
EQU Timeout TO 100 ;* 10 seconds
CALL JBASECommandInit
* Accept keyboard input until ESC is pressed or the Timeout limit has been reached
LOOP
ECHO OFF
CALL JBASECommandNext(RtnNo, KeyData, Timeout)
ECHO ON
CRT @(0):@(-4):'KeyDescriptionCode=':RtnNo:' KeyData=':KeyData:
UNTIL RtnNo = cmd_escape OR RtnNo = cmd_timeout DO
REPEAT
CRT
Where the routine is togging echo to off, then back on for each call.
To view this discussion visit https://groups.google.com/d/msgid/mvdbms/29fc0550-9e12-4444-bc3a-ea4782fb0766n%40googlegroups.com.