Audio Capture ActiveX Control

GetWMVProfileName

 

Return the name of WMA Profile. In some development tools, you cannot use WMVProfile Object, for this case, this method is useful.

Public Function GetWMVProfileName(
    ByVal iIndex As Integer,
    ) as String

 

Parameter
the index of wma profile.

Return Value
Return name of wma profile.

Example

   

Visual Basic .Net Syntax
For i = 0 To AxAudioCapture1.GetWMVProfileCount - 1
strProfileName = AxAudioCapture1.GetWMVProfileName(i)
cbowma.Items.Add(strProfileName)
Next