SetVideoVolume (DVR version only)
|
![]() ![]() ![]() |
Value [in]
|
The volume to be set, in percent.
|
S_OK
|
Success
|
E_FAIL
|
Failure.
|
Private Sub Form_Load()
|
HScroll1.Min=0
|
HScroll1.Max=100
|
ActiveGige1.OpenVideo "C:\\video1.avi", True
|
HScroll.Value=ActiveGige1.GetVideoVolume
|
ActiveGige1.PlayVideo
|
End Sub
|
|
Private Sub HScroll1_Scroll()
|
ActiveGige1.SetVideoVolume HScroll1.Value
|
End Sub
|
|