How to "Beep"

  • Thread starter Thread starter YeeCN
  • Start date Start date
Y

YeeCN

Hi,

Can anybody tell me how to play a "beep" sound or any other sound at all in
C#?
I thought it would be easy but I have been searching up and down....

Thanks a lot.

Best regards,
Yee
 
This is pretty simple as in old C.

System.Console.Write("\a");

Just for a single beep in console application.

Simplicity is maintained :-)
 
There's a beep function in VB and you can using the Interaction library
tocall it. You can also use the PlaySound api pointing to the beep wav
file.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Beep() does not work! 10
Default Beep 3
BEEP while working 4
continuous BIOS beep 2
Capturing key event and remove beep! 2
Beep from PC speaker 2
how to create a WAV file of different tones? 1
Making a true Beep 1

Back
Top