Play Computer System Sound using VB.NET

We always prompted to hear any computer sound when we got notifications, errors, or any information in our computer. In this article we will create this tutorial using vb.net! :) Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add four Buttons named Button1 labeled as "Play Beep Sound", Button2 labeled as "Play Asterisk Sound", Button3 labeled as "Play Hand Sound", and Button4 labeled as "Play Exclamation Sound". You must design your layout like this: design 3. Now put this code for your code module. This will trigger to play computer system sound in your four buttons.
  1. Public Class Form1
  2.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  3.         My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Beep)
  4.     End Sub
  5.  
  6.     Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  7.         My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Asterisk)
  8.     End Sub
  9.  
  10.     Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
  11.         My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Hand)
  12.     End Sub
  13.  
  14.  
  15.     Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
  16.         My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Exclamation)
  17.     End Sub
  18. End Class

Explanation:

Using the My.Computer.Audio.PlaySystemSound method we can get the system sound in our computer. This will trigger to find the system sound in which we always hear in using our computer. The My.Computer.Audio.PlaySystemSound method will play the system sound in our four buttons. For Button1 it will play beep system sound, Button2 will play asterisk system sound, Button3 will play hand system sound, and Button4 will play hand exclamation sound, respectively. Download the source code below and try it! :) Best Regards,

Engr. Lyndon R. Bermoy
IT Instructor/System Developer/Android Developer
Mobile: 09079373999
Telephone: 826-9296
E-mail:[email protected]

Visit and like my page on Facebook at: Bermz ISware Solutions

Subscribe at my YouTube Channel at: SerBermz

Add new comment