home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / basic / library / qb_pds / qbfaqr01 / comm / clrbuff.bas < prev    next >
Encoding:
BASIC Source File  |  1992-08-09  |  193 b   |  9 lines

  1. SUB pcrClearModemBuffer (H%)
  2.  
  3.    'Purpose : To clear the modem buffer
  4.    'Input   : The file handle which the com port was opened
  5.    'Return  : none
  6.  
  7.    A$ = INPUT(LOF(H%), H%)
  8. END SUB
  9.