| Date: | Tue, 7 Apr 2009 16:08:00 -0400 |
| Reply-To: | George Joseph <gjman@HOTMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | George Joseph <gjman@HOTMAIL.COM> |
| Subject: | Re: I want SAS to beep........... |
|---|
I am duly impressed. I really liked all the solutions posted. Thanks!!
Getting a bit more ambitious:
How do I get WMPlayer to play the following WAV:
C:\WINDOWS\Media\Tada.Wav
The following code does nothing.
options noxwait noxsync;
data _null_;
call system('C:\Program Files\Windows Media Player\wmplayer.exe ~
C:\WINDOWS\Media\Tada.Wav');
run;
|