I want to know how method or way when click mouse and then release a sound will produce..fro example : I click to draw alphabet 'a' and then when i release mouse a sound 'a' will be produce...anybody know how i can get th solutions?
Dim s As New SoundPlayer
s.SoundLocation = "yourwavfilepath.wav")
s.Load() : s.Play() : s.Dispose()
For x As Integer = 50 To 2001 Step 50
Console.Beep(x, 500)
Next