Page 1 of 1

Unable to access certain methods in VB 2010 and VB 2008 Expr

Posted: 18 Jan 2010 21:41
by guy.joseph
Hi

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
When the method description or the property count is accessed, a "MissingMemberException" is thrown.

What's going wrong!?

Thanks

Re: Unable to access certain methods in VB 2010 and VB 2008 Expr

Posted: 27 Jan 2010 04:28
by jacky912
I believe the "audio.count" function is not ready yet.
We have to wait for new version of VLC.