Movie Player ActiveX Control

GetThirdPartyDecoderCount

 

Get the number of count of Third Party Decoder available. If use this method, you must set UseDecoderFilter property = true

Public Function GetThirdPartyDecoderCount() as Integer 

 

No Parameter
 

Return Value
Return the the number of count of Third Party Decoder available.

Example

   

Visual Basic Syntax
MoviePlayer1.UseDecoderFilter=true
MoviePlayer1.FileName="c:\test.mpg"
iCount = Me.MoviePlayer1.GetThirdPartyDecoderCount
List2.Clear
For i = 0 To iCount - 1
   List2.AddItem MoviePlayer1.GetThirdPartyDecoderName(i)
Next