Ver Mensaje Individual
  #2  
Antiguo 04-08-2004
Avatar de Neftali [Germán.Estévez]
Neftali [Germán.Estévez] Neftali [Germán.Estévez] is offline
[becario]
 
Registrado: jul 2004
Ubicación: Barcelona - España
Posts: 18.278
Reputación: 10
Neftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en bruto
Prueba con éste codigo (no lo he probado).

Código Delphi [-]
var
  waveCaps: TWaveOutCaps;
  Volume: DWORD;
begin
  {Get Device Caps}
  waveOutGetDevCaps(0, @waveCaps, SizeOf(waveCaps));
  { If Volume Control Supported }
  if (waveCaps.dwSupport and WAVECAPS_VOLUME <> 0) then begin
    waveOutGetVolume(0, @Volume);
    // Asignar volumen
    waveOutSetVolume(0, $F000F000);
    // $F000F000 => Máximo
    // $00000000 => Mínimo
    // 4 números para cada canal (izq. y der.).
  end;
__________________
Germán Estévez => Web/Blog
Guía de estilo, Guía alternativa
Utiliza TAG's en tus mensajes.
Contactar con el Clubdelphi

P.D: Más tiempo dedicado a la pregunta=Mejores respuestas.
Responder Con Cita