home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_01 / VT52130E.LZH / VT52_EX.INF < prev    next >
Text File  |  1994-03-04  |  2KB  |  75 lines

  1. ;Conversion parameters for Copy
  2. ;0: CR,LF at end of line
  3. ;1: Delete control characters
  4. ;2: No conversion
  5. #COPY 0
  6.  
  7. ;Conversion parameters for Paste
  8. ;0: CR,LF to CR
  9. ;1: LF to CR
  10. ;2: Delete control characters
  11. ;3: No conversion
  12. #PASTE 0
  13.  
  14. ;Width of terminal window
  15. #COLUMNS 80
  16.  
  17. ;Height of terminal window
  18. #ROWS 25
  19.  
  20. ;Number of lines buffered
  21. #BUFFER 50
  22.  
  23. ;Output behaviour
  24. ;0: Run TOS program if output impossible
  25. ;1: Halt TOS program until output
  26. #UPDATE 0
  27.  
  28. ;Input line visibility
  29. ;0: Input not visible
  30. ;1: Input visible
  31. #INPUTLINE 1
  32.  
  33. ;Redraw interval
  34. #TIMER 500
  35.  
  36. ;After each TOS program
  37. ;0: Message, leave window open
  38. ;1: Close window
  39. #CLOSE 0
  40.  
  41. ;After last TOS Program
  42. ;0: VT52 remains active
  43. ;1: VT52 is deactivated
  44. ;2: VT52 is terminated
  45. #TERM 0
  46.  
  47. ;Font number
  48. #FACE 64
  49.  
  50. ;Text height
  51. #POINTS 10
  52.  
  53. ;Position and size of terminal window
  54. #WINDOW 0 0 10000 10000
  55.  
  56. ;   Example of autostart TOS program:
  57. ;
  58. #EXEC "G:\EASE\COMMAND.TOS" "" 900 2000 10000 10000 80 25 50 64 10
  59. ;
  60. ;   #EXEC                   Start a TOS program...
  61. ;   "G:\EASE\COMMAND.TOS"   Full path of TOS program
  62. ;   ""                      Command line
  63. ;   900                     TOS window position X (0 - 10000)
  64. ;   2000                    TOS window position Y (0 - 10000)
  65. ;   10000                   TOS window size X     (0 - 10000)
  66. ;   10000                   TOS window size Y     (0 - 10000)
  67. ;   80                      Number of columns
  68. ;   25                      Number of lines
  69. ;   50                      Buffered lines
  70. ;   64                      Font number
  71. ;   10                      Text height
  72. ;
  73. ;   Note - multiple #EXEC lines are possible!
  74.  
  75.