Audio Class
Provides methods for playing sounds.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
Note: |
|---|
The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: Resources. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes. |
For more detailed information, see the Visual Basic topic My.Computer.Audio Object.
You can use the My.Computer.Audio.Play and My.Computer.Audio.PlaySystemSound methods to play .wav sound files and system sounds.
The following table lists examples of tasks involving the My.Computer.Audio object.
To | See |
|---|---|
Play a sound in the background. | |
Play a sound once and wait for completion. | |
Play a sound many times. | |
Stop a sound playing in the background. | How to: Stop Playing Sounds in the Background in Visual Basic |
The My.Computer.Audio.Play method plays the specified sound in the background when AudioPlayMode.Background is specified.
Sub PlayBackgroundSoundFile() My.Computer.Audio.Play("C:\Waterfall.wav", _ AudioPlayMode.Background) End Sub
This code can run only within a Windows Forms application.
The file name should reference a .wav sound file on your system.
To simplify the management of your sound files, consider storing the files as application resources. The files can then be accessed through the My.Resources Object.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: