Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

XL2000: How to Play Sounds Using Visual Basic for Applications


View products that this article applies to.

This article was previously published under Q213777

↑ Back to the top


Summary

In Microsoft Excel 2000, cell notes have been replaced with cell comments and sound notes are no longer supported. However, you can use a Microsoft Visual Basic for Applications procedure to play sounds. To play a sound in a Visual Basic for Applications procedure, a Microsoft Windows application programming interface (API) function sndPlaySound32() can be used to play a wave (.wav) file.

↑ Back to the top


More information

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs.
If you have limited programming experience, you may want to contact a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:

Microsoft Certified Partners - https://partner.microsoft.com/global/30000104

Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS
NOTE: The following sample macro makes calls to the Windows API. This type of programming is supported by the Windows Software Development Kit (SDK) and the Visual Basic Professional Edition support groups. The level of support that you can receive from these groups depends on the individual support policies of the group. (Microsoft Support Engineers may not be able to assist in specific construction of macros that use API programming.) If you have limited programming experience, you may want to consult one of the Microsoft Solution Providers. Solution Providers offer a wide range of fee-based services, including the creation of custom macros. For more information about Microsoft Solution Providers, call Microsoft Customer Information Service at (800) 426-9400.

To use the macro, type the following declaration and subprocedure into a module sheet. Run the PlaySound macro to hear the chimes .wav file.
'This function declaration must be entered onto a single line.
Declare Function sndPlaySound32 Lib "winmm.dll" Alias "sndPlaySoundA" _
    (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long


Sub PlaySound()
    If Application.CanPlaySounds Then
        'Substitute the path and filename of the sound you want to play
        Call sndPlaySound32("c:\windows\media\chimes.wav", 0)
    End If
End Sub
				
You can replace C:\windows\media\chimes.wav with any valid .wav file.

↑ Back to the top


References

For additional information about comments in cells, click the article number below to view the article in the Microsoft Knowledge Base:
213244� XL2000: Sounds Not Converted with Cell Notes

↑ Back to the top


Keywords: KB213777, kbprogramming, kbinfo, kbhowto, kbdtacode

↑ Back to the top

Article Info
Article ID : 213777
Revision : 8
Created on : 11/23/2006
Published on : 11/23/2006
Exists online : False
Views : 288