Hello,
I need to set the master volume of the loud speaker. I tried the FMOD library, all seems to work fine except the master volume.
I tried with the following code :
Sub App_Start
Form1.Show
fmod.New1
End Sub
Sub Button1_Click
fmod.Play(AppPath & "\chord.wav")
End Sub
Sub Button2_Click
fmod.Volume = 0
End Sub
Sub Button3_Click
fmod.Volume = 100
End Sub
Sub Button4_Click
Msgbox( "Volume = " & fmod.Volume )
End Sub
When I use button2 or button3, further using Button4 gives the right value but Button1 doesn't care of it.
Cand someone help me ?
Thanx
I need to set the master volume of the loud speaker. I tried the FMOD library, all seems to work fine except the master volume.
I tried with the following code :
Sub App_Start
Form1.Show
fmod.New1
End Sub
Sub Button1_Click
fmod.Play(AppPath & "\chord.wav")
End Sub
Sub Button2_Click
fmod.Volume = 0
End Sub
Sub Button3_Click
fmod.Volume = 100
End Sub
Sub Button4_Click
Msgbox( "Volume = " & fmod.Volume )
End Sub
When I use button2 or button3, further using Button4 gives the right value but Button1 doesn't care of it.
Cand someone help me ?
Thanx