quote:
Originally posted by vikke
Edit: if you want to add a beep you could use this function.
code:function Beep(frequency, duration)
{
Interop.Call("Kernel32.dll", "Beep", frequency, duration);
}
Beep will use the computer speaker to generate a sound.
If you want to use a waveform sound, you have to use
MessageBeep.