|
| ||||||||||
| Tags: microsoft, speaker volume, vb express 2008, volume control, windows 7 |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Speaker balance position is reset, if speaker volume minimized
|
|
#2
| ||||
| ||||
| Re: Speaker balance position is reset, if speaker volume minimized
Well my friend, this issue is not unknown; there are many users who are facing this kind of problem. Means if they are adjusting the speaker volume there speaker balance position is reset. One more thing I will like to tell you this issue is not caused by any virus; it is just a functionality issue. As far as I know there is no resolution for this problem, but if there is any update for this then I will definitely let you know. One more thing you have not given any specification related to your speaker. If you can provide the specification for that then we can help you in a better way. I hope that you understand what I am trying to convey. There are many other solution that you can have for that and I hope that other users will provide you some kind of relevant solution. |
|
#3
| |||
| |||
| Re: Speaker balance position is reset, if speaker volume minimized
I think that I am also facing similar kind of issues and for your information I am giving specification of my speaker and also explain what I want to achieve. Currently I am having 5.1 speaker and the thing I want to achieve is that the Front Left and the Rear Left speaker must be around 75% level of the right one and it must remain in the relativity, I am asking this because of the speaker position. One more thing it should not change if I am raising the volume or reducing the volume. In short I just want to a way through which I am able to keep this thing in the relative position of balance. If you can provide any related reply then it will be really appreciated. I will be waiting for you reply. |
|
#4
| |||
| |||
| Re: Speaker balance position is reset, if speaker volume minimized
Problem I am facing is relatively same but I want the control for that through the use of programming. I want to adjust the volume of my speakers from my vb application. I work with VB Express 2008 on a Vista environment, and here is the code that I am using. Code: Declare Function Lib waveOutSetVolume "WinMM" (ByVal wDeviceID As IntPtr, ByVal dwVolume As System.UInt32) As Integer
Sub RegleVolume (ByVal i As Integer) 'Volume 0 to 100%
Sun stVolDr As String 'Volume Right
Sun stVolGa As String 'Volume left
stVolGa = Hex ((i / 100) * 65535)
stVolDr = Right ("0000" & Hex ((i / 100) * 65535), 4)
waveOutSetVolume (0, CLng ("& h" & & stVolGa stVolDr))
End Sub |
|
#5
| ||||
| ||||
| Re: Speaker balance position is reset, if speaker volume minimized
I am having a kind of solution for this but I cannot say this is the perfect solution for the problem that you are facing. I have tried this for solving the problem. Private Function SetVolume (ByVal volLeft As System.UInt16, _ As System.UInt16 volRight ByVal) As Integer Sun flying ace System.UInt32 = (CType (volLeft, System.UInt32) And 65535) _ Or (CType (volRight, System.UInt32) <<16) Select Case m_type Case DeviceTypes.Wave Return NativeMethods.waveOutSetVolume (m_hwo, theft) Case DeviceTypes.Aux Return NativeMethods.auxSetVolume (m_deviceID, theft) Case DeviceTypes.Midi Return NativeMethods.midiOutSetVolume (m_hwo, theft) End Select Return 0 End Function I get an error with m_type, I do not understand where I assign the value. Similarly the NativeMethods, I do not know how to report it. If anyone can provide the report for that it can be really helpful for your problem as well as your problem. |
|
#6
| |||
| |||
| Re: Speaker balance position is reset, if speaker volume minimized
Yes, but the problem is that I want to adjust the volume of the speakers directly. When I chose the ring wav, this is the volume of my application. What I want is to change the overall volume of my application because it depends directly on one of my speakers. Clearly I can reduce the sound of my application when my HP is 100% but I cannot watch the sound if my HP is at 0%. It should certainly choose another device that wav, but I do not know where and how to add? I still cannot change the volume of my speakers. In addition, I feel that to do so, I'll have to create more lines of code than the rest of my application. I think there is a code for the same type as the first one I posted. Yet I keep trying even if the use of the object "Mixers" (to attack the master) in VB.net does not look so easy. I am still in need of advice or new ideas for resolving this issue. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Speaker balance position is reset, if speaker volume minimized" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Speaker balance in Lenovo B450 Laptop | Buckley | Portable Devices | 1 | 11-02-2012 04:34 PM |
| Sony Ericsson Cedar is having low speaker volume | MEDINI | Portable Devices | 7 | 09-10-2011 11:16 AM |
| Speaker volume of HTC sensation Smartphone is low | Bejan Daroowala | Portable Devices | 5 | 15-07-2011 11:09 PM |
| Speaker volume is low in HTC HD7 | Emerican | Portable Devices | 4 | 27-04-2011 08:47 PM |
| Speaker OR computer volume? | SANDESH49 | Hardware Peripherals | 1 | 20-08-2008 08:26 PM |