home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 24
/
CD_ASCQ_24_0995.iso
/
win
/
prg
/
lb12
/
player.bas
< prev
next >
Wrap
BASIC Source File
|
1995-06-16
|
256b
|
17 lines
'Simple wave file player
'You must have sound support installed to
'use this player!
[loop]
filedialog "Pick a *.WAV file", "*.wav", w$
if w$ = "" then [quit]
playwave w$, asynch
goto [loop]
[quit]
end