Provides methods for playing sounds.
<HostProtectionAttribute(SecurityAction.LinkDemand, Resources := HostProtectionResource.ExternalProcessMgmt)> _ Public Class Audio
Dim instance As Audio
[HostProtectionAttribute(SecurityAction.LinkDemand, Resources = HostProtectionResource.ExternalProcessMgmt)] public class Audio
[HostProtectionAttribute(SecurityAction::LinkDemand, Resources = HostProtectionResource::ExternalProcessMgmt)] public ref class Audio
public class Audio
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.
How to: Play Sounds in Visual Basic
Play a sound once and wait for completion.
How to: Play Sounds and Wait For Completion in Visual Basic
Play a sound many times.
How to: Play Looping Sounds in Visual Basic
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