Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
SetMixerWaveVolume method 
 
Remarks 
 
Changes the system wave volume for the given mixer. 
 
The current volume can be retrieved using the GetMixerWaveVolume method. 
 
The number of mixers currently installed on the system can be retrieved using the GetMixersCount method. A friendly description of the mixer can be retrieved using the GetMixerDesc method.  
 
This method is not supported under Windows Vista. 
 
Syntax 
 
[Visual Basic] 
Public Function SetMixerWaveVolume
nIndex as Int16
nValue as Int16 
 
[C#] 
public enumErrorCodes SetMixerWaveVolume
Int16 nIndex, 
Int16 nValue 
);
 
[C++] 
public: enumErrorCodes SetMixerWaveVolume
Int16 nIndex, 
Int16 nValue 
);
 
 
Parameter
Description
 
 
nIndex
Number representing the zero-based index of the mixer whose Wave volume must be set
nValue
The new volume value in the range from 0 to 100.
 
 
 
Return value 
 
Value
Meaning
 
 
Negative value
An error occurred (see the LastError property for further error details)
enumErrorCodes.NOERROR (0)
The method call was successful
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents