home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************
- FUNCTION DONEBEEP (howmany)
- *****************************************************************
-
- * Sounds a dual tone on completion of an operation
-
- * Copyright(c) 1991 -- James Occhiogrosso
-
- * Set number of beeps to one if not passed or not numeric
- howmany = IF(VALTYPE(howmany) != 'N', 1, howmany)
-
- * Sound the tone
- DO WHILE howmany-- > 0
- TONE(650,1)
- TONE(850,1)
- ENDDO
-
- RETURN NIL
-
-