home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / BBS / RBBS_PC / MRG0619.ZIP / RSB30619.MRG < prev    next >
Encoding:
Text File  |  1990-06-23  |  830 b   |  22 lines

  1. * ------------[ BLED merge (c) Ken Goosens ]-------------
  2. * Merge this against RBBSSUB3.BAS to produce RBBSSUB3.NEW
  3. * RBBSSUB3.BAS:  Date 5-21-1990  Size 116300 bytes
  4. * ------------[ Created 06-23-1990 23:39:13 ]------------
  5. * REPLACING old line(s) by new
  6. 41032 ' $SUBTITLE: 'DispTimeRemain - Display users time remaining'
  7. ' $PAGE
  8. '
  9. '  NAME    -- DispTimeRemain
  10. '
  11. '  INPUTS  --     PARAMETER                    MEANING
  12. '              MinsRemaining
  13. '
  14. '  OUTPUTS --     PARAMETER                    MEANING
  15. '                MinsRemaining               TIME IN MINUTES LEFT IN SESSION
  16. '
  17.       SUB DispTimeRemain (MinsRemaining) STATIC
  18.       CALL TimeRemain (MinsRemaining)
  19. * ------[ first line different ]------
  20.       CALL QuickTPut1 (ZEmphasizeOff$ + STR$(MinsRemaining) + " min left") ' MB052101
  21.       END SUB
  22.