home *** CD-ROM | disk | FTP | other *** search
- 'A lone play command is present in this module so error trapping is
- 'seperate from the main module. This decreases the size of the driver.
- DEFINT A-Z
- ErrorHandler:
- RESUME NEXT
-
- SUB playme (A$)
- ON ERROR GOTO ErrorHandler
- PLAY A$
- ON ERROR GOTO 0
- END SUB
-
-