Movie Player ActiveX Control

GetAudioEffectCount   

 

Get the number of count of Audio Effects.

Public Function GetAudioEffectCount() as Integer

 

No Parameter
 

Return Value
Return the number of count of Audio Effects is installed on your system.

Example

   

Visual Basic Syntax
iAudioEffectCount = MoviePlayer1.GetAudioEffectCount
For i = 0 To iAudioEffectCount - 1
   List1.AddItem MoviePlayer1.GetAudioEffectName(i)
Next
If List1.ListCount > 0 Then
  List1.ListIndex = 0
End If