Beep

  • Thread starter Thread starter Jan
  • Start date Start date
How I can make a beep in C#?

use a tuning-fork to find A. then sing a note 4 semitones higher.

[DllImport("kernel32.dll")]
public static extern bool Beep(int freq,int duration);

Regards,
Wiktor
 
LOL

--
Cobus Lombard
Application Developer
Mint Net
South Africa

Wiktor Zychla said:
How I can make a beep in C#?

use a tuning-fork to find A. then sing a note 4 semitones higher.

[DllImport("kernel32.dll")]
public static extern bool Beep(int freq,int duration);

Regards,
Wiktor
 
Back
Top