home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************
- FUNCTION ERRORBEEP (howmany)
- *****************************************************************
-
- * Sounds a slightly unpleasant error tone
-
- * Copyright(c) 1991 - James Occhiogrosso
-
- * Default is 1 beep if no parameter passed
- howmany = IF(howmany = NIL, 1, howmany)
-
- DO WHILE howmany-- > 0
- TONE(100,2)
- TONE(0,1)
- ENDDO
-
- RETURN NIL
-
-