Possible Duplicate:
How can I make the computer beep in C#?
Can the computer beep at different pitches or is there only one?
Can the computer beep at different pitches or is there only one? |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
The Console.Beep method has two overloads: the first version is the default beep, and the second version receives two arguments—the frequency and the duration in milliseconds. Try following program to sample different beeps your c# code can make.
|
|||
|
|
You can change the frequency The frequency of the beep, ranging from |
|||
|
|
|
for example,
Will beep @ 5000 MHz for 1 second You can play with the HZ to control the tone More on beep here. |
|||
|
|
|
According to the
|
|||
|
|
|
You can change the frequency. See a good example. You can even play musics. Check this link |
|||
|
|