Hej! hittade detta på nätet, iofs på italienska men jag tror du fattar.Ljud vid händelse?
Jag har en timer som gör en viss sak varje minut. Skulle vilja skapa ett ljud ( ett pip t.ex.) vid varje intervall/ varje minut. Hur gör jag det?
Tack på förhand.
/CamillaSv: Ljud vid händelse?
<code>
using System;
using System.Runtime.InteropServices;
class MainClass
{
[DllImport("kernel32.dll")]
public static extern bool Beep(int freq,int duration);
public static void Main(string[] args)
{
Console.WriteLine("un beep");
Beep(1000,1000);
Console.WriteLine("un beep più alto e più corto");
Beep(2000,500);
}
}
</code>