You can also use P/Invoke to call Kernel32.dll!Beep.
It takes two arguments, the first one the frequency, and the second
one the duration and returns a bool for success.
Frequency must be from 37 to 32,767.
something like:
using System.Runtime.InteropServices;
public class whatever {
[DllImport("Kernel32.dll")]
public static extern bool Beep(UInt32 frequency, UInt32 duration);
public static void beepTime() {
Beep(1000, 300);
System.Threading.Thread.Sleep(300);
Beep(2000, 400);
System.Threading.Thread.Sleep(300);
Beep(500, 200);
System.Threading.Thread.Sleep(300);
}
}
-mike
MVP