Unable to access certain methods in VB 2010 and VB 2008 Expr
Posted: 18 Jan 2010 21:41
Hi
I started playing around with the VLC ActiveX player today, and I wrote this code:
When the method description or the property count is accessed, a "MissingMemberException" is thrown.
What's going wrong!?
Thanks
I started playing around with the VLC ActiveX player today, and I wrote this code:
Code: Select all
Public Function GetTrackNames()
Dim tracks As New List(Of String)
tracks.Add("(Disable)") 'Write track 0
For i = 1 To VLCPlugin.audio.count()
tracks.Add(VLCPlugin.audio.description(i)) 'Write other tracks
Next i
Return tracks
End Function
What's going wrong!?
Thanks