Programmieren - alles kontrollieren 4.934 Themen, 20.613 Beiträge

System Leutstärkeregler C# / Python

malte simon / 3 Antworten / Flachansicht Nickles

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]

bei Antwort benachrichtigen