vote up 3 vote down star
2

How do I make the computer's internal speaker beep in C# without external speakers?

flag

75% accept rate

6 Answers

vote up 15 vote down check

In .Net 2.0, you can use Console.Beep().

// Default beep
Console.Beep();

You can also specify the frequency and length of the beep in milliseconds.

// Beep at 5000 Hz for 1 second
Console.Beep(5000, 1000);
link|flag
Enjoy your new badge. ;) – Robert S. Nov 26 '08 at 15:51
Note that Beep() is not supported on Windows 64 bit systems (i.e. you'll hear no sound). – Lck Oct 12 at 12:09
I just tested in Win 7 x64 RC, and although the internal speaker didn't beep, there was a beep through speakers when I had them plugged in and on. I guess it's just the internal (mobo) speaker that won't beep. Thanks for the info @Lck. – a_hardin Oct 13 at 14:38
vote up 11 vote down

You can also use the relatively unused:

    System.Media.SystemSounds.Beep.Play();
    System.Media.SystemSounds.Asterisk.Play();
    System.Media.SystemSounds.Exclamation.Play();
    System.Media.SystemSounds.Question.Play();
    System.Media.SystemSounds.Hand.Play();
link|flag
Unfortunately these system sounds require external speakers, which can't always be counted on. It's definitely good to know these, though! – a_hardin Dec 1 '08 at 14:59
Now knowing that x64 versions of Windows requires speakers to hear the Console.Beep(), these options will work just as well. – a_hardin Oct 13 at 14:41
vote up 9 vote down

Console.Beep

link|flag
vote up 1 vote down

Console.WriteLine("\a")

link|flag
vote up 0 vote down

Does anyone know a site or have any info on where I can find some Xmas tunes in 'beep' format?

link|flag
You just made me flash back to my QuickBASIC class in high school. Complete with a ASCII Christmas tree with flashing lights and snow falling. Unfortunately, I don't have it. It'd be easy to rewrite Jingle Bells in C#, now. – a_hardin Dec 8 '08 at 16:50
vote up 0 vote down

windows xp 64bit version beeps fine, without speakers. Thanks for the short line, I like it simple and good...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.