Hi Ich versuche ein C# / Python Programm zu schreiben um die System Lautstärke einzustellen. Es geht aber nicht. HInweise.
[code]
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
[DllImport("winmm.dll")]
public static extern int waveOutGetVolume(IntPtr hwo, out uint dwVolume);
[DllImport("winmm.dll")]
public static extern int waveOutSetVolume(IntPtr hwo, uint dwVolume);
public Form1()
{
InitializeComponent();
uint CurrVol = 0;
waveOutGetVolume(IntPtr.Zero, out CurrVol);
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}
[/code]
Programmieren - alles kontrollieren 4.935 Themen, 20.621 Beiträge
Das gepostete ist c# code
Es funktioniert nicht die Lautstärke auf 0 zu setzen.