up vote 1 down vote favorite
1
share [g+] share [fb]

I want to change from my program the speaker setup, which is under speaker settings / advanced... section.

I tried to find maybe there is some sort of registry entry but no luck till now :|

Any Ideas ?

Thanks a lot !

link|improve this question

2  
What OS? There's quite a difference between XP/Vista/W7 audio stacks. The only constant is the absense of documented API for your task. – atzz Dec 3 '09 at 11:07
Right now I need it for XP, but eventually I will need to get it working with Vista/Win 7 too. Thanks ! – Andy Dec 3 '09 at 18:33
feedback

2 Answers

I found this old thread about people failing to do this under Vista.

It seems that it is possible using DirectSound using XP though and someone claims he managed to find a hacky way to do it under Vista.

link|improve this answer
feedback
up vote 1 down vote accepted

Ok, here is the code for what I wanted

var ds:IDirectSound; begin if DirectSoundCreate(nil, ds, nil) <> DS_OK then raise Exception.Create('Failed to create IDirectSound object'); ds.SetSpeakerConfig(1);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.