home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / QBAS / PBC22B.ZIP / PBC$BAS.ZIP / RANDFILE.BAS < prev    next >
BASIC Source File  |  1993-04-15  |  642b  |  13 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |        PBClone  Copyright (c) 1990-1993  Thomas G. Hanlin III        |
  4. '   |                                                                      |
  5. '   +----------------------------------------------------------------------+
  6.  
  7. DECLARE SUB GetTime (HourNr%, MinuteNr%, SecondNr%, HundredthSecNr%)
  8.  
  9. FUNCTION RandFile$
  10.    GetTime HourNr%, MinNr%, SecNr%, HundSecNr%
  11.    RandFile$ = "$" + CHR$(HourNr% + 65) + HEX$(MinNr% * 256 + SecNr%) + HEX$(HundSecNr%) + "."
  12. END FUNCTION
  13.