home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / clarion / dispfil3.zip / READ.ME < prev   
Text File  |  1989-11-06  |  2KB  |  71 lines

  1.               ╔═══════════════════════════════════╗
  2.               ║Display a file to the Video Monitor║
  3. ┌───────────┐          ╚═══════════════════════════════════╝
  4. │Written By │
  5. └───────────┘
  6.  Greg Wilder
  7.  Automation Services, Inc.
  8.  September 17, 1988
  9.  
  10.  
  11. ┌─────────────┐
  12. │ MODIFIED BY │
  13. └─────────────┘
  14.  Todd A. Seidel
  15.  Micro Solutions Group, Inc.
  16.  17 Aldrich Rd.
  17.  Columbus, OH 43214           Phone (614) 261-4545
  18.  
  19.  November 7, 1989
  20.  
  21.  (FOR DETAILS ON MODIFICATIONS SEE COMMENT AT BEGINING OF DISPFILE.CLA)
  22.  
  23.  
  24. ┌──────────────┐
  25. │Files Needed  │
  26. └──────────────┘
  27.  1) LF.CLA     - main program that calls the display procedure
  28.  2) DISPFILE.CLA - procedure to actually display file to monitor
  29.  
  30.  
  31. Compile both programs. All 'LF.CLA' does is call the actual DISPFILE procedure.
  32. You can change 'DISPFILE.CLA' to be a standalone procedure that any program can
  33. call. All you need to do is modify the MEMBER statement in 'DISPFILE.CLA'. You
  34. need to set a Global variable(DISFNAME) to the name of the file to be displayed
  35. before calling the DISPFILE procedure(or make DISPFILE into a function).
  36.  
  37.  
  38. ┌───────────────┐
  39. │KEYSTROKE HELP │   ONLINE HELP SCREEN NOW INCLUDED
  40. └───────────────┘
  41.  
  42. HOME         - goto Top of file
  43. END         - goto Bottom of File
  44. CTRL/ESC     - Quit Displaying file
  45. Left Arrow     - Shift Display right
  46. Right Arrow     - Shift Display left
  47. Down Arrow     - Scroll down by one line
  48. Up Arrow     - Scroll up by one line
  49. PgDown Key     - Scroll down by one page
  50. PgUp Key     - Scroll up by one page
  51. Ctrl Left Arrow     - Show Left Most part of display
  52. Ctrl Right Arrow - Show Right Most part of display
  53.  
  54. F7         - Split Screen Vertically    (see note below)
  55. F8         - Split Screen Horizontally  (see note below)
  56.  
  57. ┌──────────────┐
  58. │Split Screens │
  59. └──────────────┘
  60.  The screen may be split vertically, horizontally, or both. The F7/F8 keys
  61.  will toggle the splitting on or off. To split the screen, press the function
  62.  key, then use the arrow keys to mark the area you want to split or "lock", then
  63.  press the <ENTER> key to set the split. The file movement keys then allow you
  64.  to move the "unsplit" part of the screen as before. Press the function key
  65.  again to remove the split screen display.
  66.  
  67.  Splitting the screen vertically is useful for displaying files larger than 80
  68.  columns. Split the screen vertically (F7), then use the left/right arrow keys
  69.  to show the rightmost columns of the file.
  70.  
  71.