Hi people.i am trying to integrate videolan activeX Plugin (vlc) and play a song. i have following specs
a)I have succesfully added "Videolan vlc activeX plugin V2 " in components and make box in "FORM1"
b)I have given MRL
PROBLEM:
When i start debugging what i see is a black screen.No song is played .Code is as follow
![Name: pic 1.png
Views: 10
Size: 13.0 KB]()
any help will be appreciated thankx.
HTML Code:
VB 2010
Videolan vlc activeX plugin V2 Version 1.0
vlc player 1.1.19b)I have given MRL
PROBLEM:
Quote:
When i start debugging what i see is a black screen.No song is played .Code is as follow
Code:
Public Class Form1
Private Sub AxVLCPlugin21_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs)
AxVLCPlugin21.MRL = ("E:\SONGS\mp4\MAYE NI MAIN KINO .MP4")
AxVLCPlugin21.AutoPlay = True
AxVLCPlugin21.playlist.add("E:\SONGS\mp4\MAYE NI MAIN KINO .MP4", "")
AxVLCPlugin21.playlist.play()
End Sub
End Class