VB.net plugin issues
Posted: 12 Aug 2016 12:40
Hi,
I am trying to get the VB.net plugin working but it will not load. I have added the COM component, I can drag the control onto the form and then use this code to load the video:
However nothing shows? The toolbar disappears, as if a video was playing, but nothing shows. Is there something I'm missing?
Thanks
I am trying to get the VB.net plugin working but it will not load. I have added the COM component, I can drag the control onto the form and then use this code to load the video:
Code: Select all
AxVLCPlugin21.CtlVisible = True
AxVLCPlugin21.playlist.items.clear()
Dim uri = New Uri("C:\Users\XXX\Documents\flame.avi")
AxVLCPlugin21.playlist.add(uri.AbsoluteUri)
AxVLCPlugin21.playlist.play()
Thanks