M
MrNobody
I am trying to find a way to make my system beep and multiple articles I
google explain a method using P/Invoke like this:
#region Win32
[DllImport("Kernel32.dll")]
static extern bool Beep(
uint dwFreq, uint dwDuration
);
#endregion
Beep(1000, 1000);
But no sound is produced.
I can play any MP3, WAV or MIDI file on the same system and hear the music
but I cannot hear anything coming from this Beep() function.
Any idea what may be wrong?
google explain a method using P/Invoke like this:
#region Win32
[DllImport("Kernel32.dll")]
static extern bool Beep(
uint dwFreq, uint dwDuration
);
#endregion
Beep(1000, 1000);
But no sound is produced.
I can play any MP3, WAV or MIDI file on the same system and hear the music
but I cannot hear anything coming from this Beep() function.
Any idea what may be wrong?