home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.tar / ftp.whtech.com / club100 / cat / vt100.exe / lha / VTDOC2.DO < prev    next >
Text File  |  1991-08-07  |  12KB  |  256 lines

  1. the screen.
  2. F8 will return to TELCOM.  The screen will not clear, so any
  3. prompt you had at the cursor will remain.
  4. CODE e (e for exit) will return to TELCOM, but it will clear the
  5. screen before doing so.
  6. LABEL will bring up the row and column number of the present
  7. cursor location in the bottom left corner of the screen.  This
  8. display will disappear automatically as soon as the screen needs
  9. to scroll, or can be erased immediately if it covers important
  10. text by pressing PASTE
  11. PRINT -the PRINT function key- will print the screen to the
  12. printer if it is attached and turned on.  If no printer is
  13. connected to the parallel port, no action is taken.  The screen
  14. printed is the full 80x24 screen of the VT100, not just the small
  15. Model 100 window.
  16.  
  17.           
  18.                        |-----F6------|
  19.              |-------F5-------|------F7-------|
  20.             c1        c21    c41    c61        80
  21.              ____________________________________
  22.              |         |      |      |        | |
  23.              |                |               | F4
  24.              |      F1 |      |      |        |--
  25.              |   (Section 1)  |  (Section 4)  |||    PASTE
  26.              |         |      |      |        |||
  27.              --------------Line 8--------------\/     key
  28.              |         |      |      |        | 4
  29.              |                |               |        to
  30.              |      F2 |      |      |        | r
  31.              |   (Section 2)  |  (Section 5)  | o    Resume
  32.              |         |      |      |        | w
  33.              --------------Line 16------------- s
  34.              |         |      |      |        |
  35.              |                |               | d
  36.              |      F3 |      |      |        | o
  37.              |   (Section 3)  |  (Section 6)  | w
  38.              |         |      |      |        | n
  39.              --------------Line 24-------------
  40.             
  41.                           FIGURE #1 
  42.  
  43.                   Moving Around the VT100 Screen
  44.  
  45.      
  46. GRAPH 'a' will send a CTRL A to the host computer.  A CTRL A is
  47. used in some editing programs, including command line editing on
  48. the VAX to switch between insert and replace mode.  Since the
  49. SHIFT Left Arrow generates the same code as CTRL A, and has been
  50. mapped to become the PF4 function key (see below), some way is
  51. needed to generate a CTRL A to send to the host.  The GRAPH a
  52. will send such a code (ASCII Code 1).
  53.  
  54. CODE 'x' toggles between XON/XOFF enabled, and disabled.  It may
  55. never be required.  It was put into 100/100, because some
  56. electronic switches interpret the XOFF character sent out as an
  57. actual character and invalidates the choice.  It is usually only
  58. required at speeds greater than 300 baud, using an external
  59. modem, where the screen on the Model 100 cannot keep up with the
  60. characters received and when the switch being used sends a full
  61. screen of information, rather than a single line prompt, before a
  62. choice is allowed.  Pushing CODE x will turn off XON/XOFF if it
  63. is on, and turn it on if it is off.  When returning to TELCOM,
  64. whichever mode has been set using the STAT command will be used,
  65. regardless of the toggle state inside the VT100 emulator.
  66.  
  67. GRAPH 'f' enters "fast mode". In order to speed up performance
  68. characters received from the host are not echoed to the screen
  69. in.  Instead only cursor movement and the column/row display in
  70. the lower left corner are shown.  Transmission can then be
  71. stopped and the screen viewed with the function keys.  The PASTE
  72. key exits fast mode.
  73.  
  74. GRAPH NUMBER KEYS produce the code of the number keys on the
  75. VT100 keypad, if in application mode.  The number keys used here
  76. are not the ones at the top of the Model 100, but the ones used
  77. to generate numbers when the NUM key is depressed.  The keys
  78. produce the keypad equivalents in application mode, not the
  79. numbers.  The keypad keys on a VT100 produce two different sets
  80. of code when pressed, either a special application code, or the
  81. numbers.  Application mode is typically used in applications like
  82. word processing and editing where rather than produce a number, a
  83. function is produced when the key is depressed.  If you are in an
  84. application that uses the keypad to produce numbers, press the
  85. NUM key and use the same keys.  A VT100 will automatically switch
  86. between application mode and numeric mode for these keys, but
  87. 100/100 will not.  If you are using the GRAPH key combination and
  88. it doesn't seem to be working, try the NUM key instead.
  89.  
  90.    One exception to the GRAPH number key is the '1' (one) or 'j'
  91. key.  Unfortunately, GRAPH j is not recognized by the Model 100
  92. as a key being pressed, therefore the user must press GRAPH SHIFT
  93. J.  Since the three key combination can be somewhat awkward,
  94. GRAPH 'h' will produce the same code.  Either combination will
  95. work. Both combinations are less than desired and may cause the
  96. user some consternation until experience makes their use a habit.
  97. Until then, the user is likely to press GRPH j more than once and
  98. wonder why no response is obtained.  The limitation of the Model
  99. 100, however, makes this situation unavoidable.
  100.  
  101.    In addition to the number keys, GRPH . (period) will produce
  102. the keypad period, GRPH , (comma) will produce the keypad comma,
  103. GRPH ' (single quote) the keypad enter, and GRPH / (slash) will
  104. produce the keypad minus.  The slash was chosen rather than the
  105. minus sign, for two reasons; one was its proximity to the other
  106. keys, rather than on the top row of the keyboard. The other is
  107. that the GRPH - combination on the Model 100 is used to produce
  108. the ASCII code 96, the backslash character.  The GRPH ' (single
  109. quote) was chosen to represent the keypad ENTER key since it sits
  110. right next to the ENTER key on the Model 100.
  111.  
  112. CODE SHIFT R will reset the screen.  The screen is cleared, the
  113. cursor is homed, top and bottom margins are reset to 1 and 24
  114. respectively, and tab stops are set to their defaults.
  115.  
  116. PF Function Keys are produced by using the SHIFT Arrow Keys.  
  117.  
  118. PF1 -sometimes the GOLD key on the VT100- is emulated with the
  119. SHIFT Left Arrow key.
  120. PF2 is SHIFT Right Arrow key
  121. PF3 is SHIFT Up Arrow key
  122. PF4 is SHIFT Down Arrow key
  123. The Key Layout for the VT100 keypad keys looks like the
  124. following, where the top characters in the box represent what is
  125. on the Model 100 key and the bottom most character in the box,
  126. between the '- -'  respresents the keypad equivalent on the VT100
  127. keypad.
  128.             
  129.                                      ---------------------
  130.                                      |SHFT|SHFT|SHFT|SHFT|
  131.             Model 100 Cursor Keys -> | <- | -> | /\ | \/  |
  132.             (Use SHIFT + Cursor Key) | PF1| PF2| PF3| PF4|
  133.                                      ---------------------
  134.                -------------------
  135.                |  &  |  *  |  (  |
  136.                | 7/7 | 8/8 | 9/9 |
  137.                | -7- | -8- | -9- |    Use GRPH + Key
  138.                ----------------------
  139.                   |     |     |     |
  140.                   | U/4 | I/5 | O/6 |
  141.                   | -4- | -5- | -6- |
  142.              -------------------------------------
  143.              |     |SHIFT|     |     |  :  |  "  |
  144.              |  H  | J/1 | K/2 | L/3 |  ;  |  '  |
  145.              | -1- | -1- | -2- | -3- |     |-ENT-|
  146.              -------------------------------------
  147.                     |     |  <  |  >  |  ?  |
  148.                     | M/0 |  ,  |  .  |  /  |
  149.                     | -0- | -,- | -.- | --- |
  150.                     -------------------------
  151.                                       (Minus)
  152.  
  153.                              FIGURE #2
  154.  
  155.                               Keypad Emulation Keys
  156.  
  157.  
  158.                            SECTION II
  159.  
  160.  
  161. LOADING 100/100
  162.  
  163. 100/100 is loaded exactly as any other machine language program
  164. on the Model 100.  Below is a brief summary, but if you need
  165. further information, please consult your Model 100 manual.
  166.  
  167. To load from Cassette tape:
  168.  
  169. Enter BASIC and with the recorder appropriately set and turned on
  170. type:
  171.  
  172.   CLEAR 256,59554
  173.   CLOADM"VT100"
  174.  
  175. When the OK prompt returns, the program has been loaded into high
  176. memory.  Then type:
  177.  
  178.   SAVEM"VT100",59554,62960,59554
  179.  
  180. This command will save a copy of the program in low memory for
  181. later loading should the copy in high memory become corrupted. 
  182. If you don't wish to save a copy in low memory, type the
  183. following command instead:
  184.  
  185.   SAVEM"VT100",59554,59554,59554
  186.  
  187. This will put an entry into the directory so that the program can
  188. be started by putting the cursor over the file name and pressing
  189. ENTER.  If you use another machine language program in the same
  190. space, however, VT100 will be corrupted and must be loaded from
  191. tape before using it again.
  192.  
  193. On the tape are other utility programs for 100/100 as well. 
  194. Also, to insure that you receive a usable copy, all programs are
  195. duplicated after the last utility program on the tape media.
  196.  
  197. USING 100/100
  198.  
  199. To start 100/100, simply put the menu cursor over the file name
  200. "VT100" and press ENTER.  In a fraction of a second, it defines a
  201. few beginning parameters, including the F6 and F7 function keys
  202. for TELCOM.  The TELCOM screen will then appear, exactly as if
  203. you had entered TELCOM directy except the 100/100 title line will
  204. be displayed at the top of the screen.  If the Model 100 beeps
  205. when you try to run the program, go into BASIC and type the CLEAR
  206. command as defined above to clear the proper memory area.  Then
  207. start the program again.
  208.  
  209. At this point you are not actually in the VT100 program, but
  210. rather in the built-in TELCOM application you are used to using. 
  211. The VT100 title screen is displayed only so you know VT100 is
  212. loaded and ready to go.  Since you are in normal TELCOM, you can
  213. set the parameters with the F3 STAT command, just as you would in
  214. TELCOM.  See your Model 100 owners manual for parameter
  215. descriptions.  If you are using the built in modem for example,
  216. you would press F3 and then after receiving the STAT prompt, type
  217. in M7I1E or something similar.
  218.  
  219. You can use the FIND and autodial and auto logon files that you
  220. have created exactly as you always have with TELCOM.  After you
  221. press F4 or your automatic procedure has made a connection, you
  222. can press F6 to enter VT100 mode.  There is a pause of a second
  223. or two, and then the label line will disappear and the cursor
  224. will go to the top left corner and you are in VT100 mode. 
  225. Characters will now scroll horizontally as you reach column 40.
  226.  
  227. The best time to press F6 and enter VT100 mode is immediately
  228. after pressing F4.  A few characters may be lost if done while
  229. characters are still transmitting, however, no other ill effects
  230. will be experienced.  
  231.  
  232. You could wait until after you log on to enter VT100 mode, but it
  233. is best to enter VT100 before any initial command files (LOGON
  234. files) are executed by the host since these files often request
  235. the terminal identify itself.  If you are in VT100 mode when the
  236. host makes this request,  your portable will respond with the
  237. VT100 response so the host will recognize you as a VT100. 
  238. Otherwise, you may have to issue a command manually to tell the
  239. host you are a VT100.  On a VAX, you type SET TERM/VT100.  If an
  240. application fails to run and gives the error message that a VT100
  241. is required, it usually means you must use the SET TERM/VT100
  242. command.  If you are on a host other than a VAX, you should
  243. determine what the equivalent command would be.
  244.  
  245. If you are using an external modem and dialing manually, you can
  246. enter VT100 mode before dialing.  Enter TELCOM, set the
  247. parameters, press F4 and then F6.  Now dial and connect exactly
  248. as in TELCOM.
  249.  
  250. In VT100 mode, the screen will scroll horizontally by 20
  251. characters when column 40 is reached, putting column 40 exactly
  252. in the center of the screen.  At column 60 the characters again
  253. hit the right side of the screen and a second scroll of twenty
  254. characters occurs.  Each scroll causes the screen to jump
  255. somewhat and it can be difficult at first to read the text as it
  256. is  displayed.  Don't be discouraged. As you get used to the