home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / BBS_UTIL / BM0406_A.ZIP / DOCS.ZIP / LOOPRFS.DOC < prev    next >
Text File  |  1994-02-08  |  4KB  |  91 lines

  1.         ╔════════════════════════════════════════════════════════════════╗
  2.         ║     LOOPRFS - VCR Metaphor for RBBS/STUNY RIP File Listing.    ║
  3.         ╟────────────────────────────────────────────────────────────────╢
  4.         ║                  Support board: THE LOOP BBS                   ║
  5.         ║      Node 1: (314) 862-1253 (Zoom 2400-14.4 V.32/V.42bis)      ║
  6.         ║      Node 2: (314) 862-1261 (Zoom 2400-14.4 V.32/V.42bis)      ║
  7.         ╚════════════════════════════════════════════════════════════════╝
  8.  
  9.  --------------------------------------------------------------------------- 
  10.                    DISCLAIMER OF WARRANTIES AND FAIR WARNING
  11.  ---------------------------------------------------------------------------
  12.  
  13.      THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
  14. EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES 
  15. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  The entire risk of 
  16. all damages resulting from use of this software, including the cost of all  
  17. necessary remedies, lies with the user of this software and not the author 
  18. of LOOPRFS.  'Nuf said.
  19.  
  20.  
  21.  --------------------------------------------------------------------------- 
  22.                               USE OF LOOPRFS                            
  23.  ---------------------------------------------------------------------------
  24.  
  25.      LOOPRFS displays a VCR-type control panel at the bottom of a file 
  26. list or search whenever the user's graphics preference is set to RIP.  The 
  27. control panel not only looks nifty, but allows the user to perform all file 
  28. list functions with his or her mouse.  In other words, the user can execute 
  29. the L)ist, S)top, C)ontinue, A)bort, J)ump, V)iew, M)ark and D)ownload 
  30. options by simply clicking on the appropriate LOOPRFS control panel button, 
  31. rather than having to enter the command via keyboard.  This scheme makes 
  32. file listing, marking, and downloading easier for a user using a RIPscrip 
  33. terminal.
  34.  
  35.      This "merge" is designed for use with RBBS v. 17.4 modified with the
  36. BusiMods(STUNY) package.  Because the merge consists of only two lines 
  37. of code, it should be inserted into the STUNY-modified code by hand.
  38.  
  39.      To install LOOPRFS, simply copy the included FILESCAN.RIP file into
  40. your RBBS help file diretory (typically, C:\RBBS\HELP), then insert the 
  41. following two lines of code into line 58203 of the RBBSSUB4.BAS module:
  42.  
  43.      IF ZRIPTest = ZTrue THEN _                              ' CJQ020794
  44.         CALL BufFile(ZHelpPath$ + "FILESCAN.RIP",WasX)       ' CJQ020794
  45.  
  46.      When you have finished this exhausting task, the code should look
  47. something like this:
  48.  
  49. 58203 ' $SUBTITLE: 'FMSHedr - subroutine to display File Listing Header' ' RM11229301
  50. ' $PAGE
  51. '
  52. '  NAME     -- FMSHedr
  53. '
  54. '  INPUTS   -- HDR$
  55. '              SrchDir$
  56. '              SpaceLen%
  57. '
  58. '  OUTPUTS  --
  59. '
  60. '  PURPOSE  -- Draws a colorful File Listing Header when listing files
  61. '
  62. '
  63.       SUB FMSHedr (DirToSearch$,HDR$,SrchDir$,SpaceLen%,CategoryDesc$) ' RM11229301
  64.  
  65.       IF ZRIPTest = ZTrue THEN _                                       ' CJQ020794
  66.          CALL BufFile(ZHelpPath$ + "FILESCAN.RIP",WasX)                ' CJQ020794
  67.  
  68.       Spaces$ = "                                          " + _     ' HEDR174/RM11229301
  69.                  "                                         "         ' HEDR174
  70.       IF ZWasGR > 0 THEN _                                           ' HEDR174
  71.          LineLen$ = "══════════════════════════════════════"+ _      ' HEDR174/RM11229301
  72.  
  73.        .
  74.        .
  75.        .
  76.        .
  77.        .
  78.  
  79.      After making the code modification, simply recompile the code as per the 
  80. BusiMods(STUNY) directions.
  81.  
  82.      I spent less than an hour on this extensive modification, so don't 
  83. expect miracles.  It works well for me, but differences in your RIP screens
  84. or RBBS setup may cause problems.  Please report any problems you discover.
  85.  
  86.      Feel free to modify the included FILESCAN.RIP file and merge in any way 
  87. you see fit.  Have Fun!
  88.  
  89.                                  - Chris Quinn
  90.                                    02/07/94
  91.