play sound
play sound
(OP)
Has anyone looked into playing a sound through a DTS pkg? A simple beep would be a great start...
Any ideas?
Thanks.
Dave
Any ideas?
Thanks.
Dave
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: play sound
I don't think this is a very good idea though. Why exactly do you want to do this?
----signature below----
Majority rule don't work in mental institutions
My Crummy Web Page
RE: play sound
http://www.tek-tips.com/viewthread.cfm?qid=1071852
strSoundFile = "c:\070-who2.wav"
Set objShell = CreateObject("Wscript.Shell")
strCommand = "sndrec32 /play /close " & chr(34) & strSoundFile & chr(34)
objShell.Run strCommand, 0, True