Hi Mariano Alvarez:
If you only want a beep you can use the Beep function (from the Win32 API):
BOOL Beep(
DWORD dwFreq, // sound frequency, in hertz DWORD dwDuration // sound duration, in milliseconds
);
but note it works on NT, W9x ignores the parameter and sounds the default beep.
That is O:K: for me.
Thank you for spending your time for stupid me. But as I am completely new to WIN programming would you kindly tell me how to implement that ? (i.e. what to #include and what to link to get the API in) Thank you again.