[613] | 1 | ZVEMRH ;DJB,VRR**Help Text [01/27/95]
|
---|
| 2 | ;;12;VPE;;COPYRIGHT David Bolduc @1993
|
---|
| 3 | ;
|
---|
| 4 | VRR1 ;;;
|
---|
| 5 | ;;; V R R . . . . . . . . . Routine Reader/Editor . . . . . . . . . David Bolduc
|
---|
| 6 | ;;;
|
---|
| 7 | ;;; E N T R Y P O I N T S:
|
---|
| 8 | ;;;
|
---|
| 9 | ;;; DO ^%ZVEMR ................ Entry point to read a routine.
|
---|
| 10 | ;;; DO PARAM^%ZVEMR(routine) .. To bypass routine selection prompt.
|
---|
| 11 | ;;; X ^%ZVEMS("E") ............ VPE routine editor that utilizes
|
---|
| 12 | ;;; the VRR module.
|
---|
| 13 | ;;;
|
---|
| 14 | ;;; N O T E S:
|
---|
| 15 | ;;;
|
---|
| 16 | ;;; VRR displays the line number for all routine lines not having a
|
---|
| 17 | ;;; line tag. It also displays total routine lines at the top of
|
---|
| 18 | ;;; the screen. The 2 vertical bars at the left side of the top and
|
---|
| 19 | ;;; bottom borders, help delineate line tags. The phrase "1 of 4"
|
---|
| 20 | ;;; that appears in the top border, refers to the routine level you
|
---|
| 21 | ;;; are currently in. As you branch to other routines, the 1 will
|
---|
| 22 | ;;; increment.
|
---|
| 23 | ;;;
|
---|
| 24 | ;;; VRR has 4 modes: EDIT Default mode
|
---|
| 25 | ;;; INSERT <RETURN>
|
---|
| 26 | ;;; BLOCK <F3>
|
---|
| 27 | ;;; MENU BAR <TAB>
|
---|
| 28 | ;;;
|
---|
| 29 | ;;; E D I T M O D E:
|
---|
| 30 | ;;;
|
---|
| 31 | ;;; When you first enter the editor you are in EDIT mode. You may position
|
---|
| 32 | ;;; the cursor anywhere on the screen and enter code. Hitting <BS> will
|
---|
| 33 | ;;; delete the character to the left of the cursor. Hitting <DEL> will delete
|
---|
| 34 | ;;; the character under the cursor. When you move the cursor to the left side
|
---|
| 35 | ;;; of the screen, you are in the line tag area. When you enter or delete code
|
---|
| 36 | ;;; here, the code will be placed so that the tag is displayed correctly.
|
---|
| 37 | ;;;
|
---|
| 38 | ;;; I N S E R T M O D E:
|
---|
| 39 | ;;;
|
---|
| 40 | ;;; In EDIT mode, when you wish to add a new line of code, type <RETURN> to
|
---|
| 41 | ;;; change to INSERT mode. A blank line will open below the line the cursor
|
---|
| 42 | ;;; is currently on. You may now add new code. Use <TAB> as a line start
|
---|
| 43 | ;;; character. Once you hit <TAB> you are returned to EDIT mode. If you hit
|
---|
| 44 | ;;; <RETURN> without adding any new code, the opened line will be closed.
|
---|
| 45 | ;;;
|
---|
| 46 | ;;;***
|
---|