home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / CLIPPER / PDRD1 / READ.KEY < prev    next >
Text File  |  1992-10-09  |  2KB  |  52 lines

  1. Active ADread() Keys
  2. --------------------
  3. These are the same as Clipper's READ keys.
  4.  
  5. UP, DOWN - saves the current GET and moves up or down one GET.  If READEXIT()
  6.         is set to TRUE, ADread() exits if the current GET is the first or
  7.         last GET, respectively.  The exit code is K_UP and K_DOWN,
  8.         respectively.
  9.  
  10. LEFT, RIGHT - moves the editing cursor horizontally;  Also exits the Get
  11.         with the LEFT key, if the cursor is at the leftmost position; or
  12.         with the RIGHT key, if the cursor is at the right most position.
  13.         In other words, these keys behave like the UP and DOWN keys,
  14.         respectively when the cursor is in such a position; and they are
  15.         governed by the READEXIT() status.  
  16.  
  17. HOME, END - moves the editing cursor to the first and last position,
  18.         respectively
  19.  
  20. PGUP, PGDN, CTRL-PGUP, CTRL-PGDN - saves the current GET and exits ADread().
  21.         The exit code is K_PGUP, K_PGDN, K_CTRL_PGUP, and K_CTRL_PGDN, 
  22.         respectively.
  23.  
  24. CTRL-HOME, CTRL-END - moves to the first and last GET, respectively.
  25.  
  26. RETURN - saves the GET and moves down one GET, or exits ADread() if it is in
  27.         the last GET.  The exit code is K_ENTER.
  28.  
  29. ESC - aborts the current GET and exits ADread().  The exit code is K_ESC.
  30. TAB - expands an expandable GET into a memoedit.
  31.  
  32. If SET CONFIRM is OFF, and the last GET was filled, ADread() exits.  The
  33. exit code is RX_NOCONFIRM which is #DEFINEd in READ.CH.
  34.  
  35.  
  36. ADread() hot spots
  37. ------------------
  38. Left-click on any GET - jumps to that GET.
  39. Left-click on a highlighted expandable GET - expands it to a memoedit.
  40. Right-click anywhere - aborts current GET and exits ADread().  The exit code
  41.         is RX_ABORT, which is #DEFINED in READ.CH.
  42.  
  43. Expanded memoedit active keys and mouse spots
  44. ---------------------------------------------
  45. [TAB] - saves the memoedit and returns to the GET.
  46. [ESC] - aborts the memoedit and returns to the GET.
  47.  
  48. Left-click [-] - saves the memoedit and returns to the GET.
  49. Left-click [?] - reserved for Help.
  50. Right-click anywhere - aborts the memoedit and returns to the GET.
  51.  
  52.