Home |
Search |
Today's Posts |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Jim,
Thanks for your help. All, How can we out put all sound together at the same time? 1 example is playing a triad. Thanks, Bau "Jim Thomlinson" wrote: Here is some code that will allow you to play a beep sound at different frequencies for different durations... Place this code in a standard code module and run BeepTest for a demonstartion... Private Declare Function Beep Lib "kernel32" (ByVal dwFreq As Long, _ ByVal dwDuration As Long) As Long Sub BeepTest() Beep 500, 200 Beep 1000, 100 Beep 2000, 50 End Sub -- HTH... Jim Thomlinson "girgor" wrote: I'd like to use Excel as a music score writer (using non standard notation). Can I also have sounds to give an indication of whether or not I've input the right note? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sound alert from excel | Excel Discussion (Misc queries) | |||
how do i set up sound alerts on excel? | Excel Discussion (Misc queries) | |||
embedding sound documents in excel | Excel Discussion (Misc queries) | |||
sound files in excel? | New Users to Excel |