Viscom Software VideoCap ActiveX Control

WMVProfiles Collection

WMVProfiles is a collection of WMVProfile objects. A WMVProfiles collection is used to obtain a list of available  window media profile.

Example:   

This VB example show how to fill a combobox will all available  wmv profile:

Dim profile As WMVProfile

For Each profile In Me.VideoCap1.WMVProfiles

     Me.cboProfile.AddItem profile.Name
Next