home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / vrac / homonlib.zip / WIPE.BAS < prev    next >
BASIC Source File  |  1995-04-13  |  431b  |  16 lines

  1. DEFINT A-Z
  2.  
  3. DECLARE SUB Wipe (row)
  4.  
  5. SUB Wipe (row)
  6. '****************************************************************************
  7. 'Clears a row on the screen.
  8. '****************************************************************************
  9.  
  10. LOCATE row, 1            'Fill the row with spaces & place the cursor back at
  11. PRINT SPACE$(80);        'the beginning of the row.  Very simple, but handy.
  12. LOCATE row, 1
  13.  
  14. END SUB
  15.  
  16.