How to play the play list in vlc player by using vb.net code
swathi sajja 0 Light Poster
Recommended Answers
Jump to Posthmmmm, not sure what you're after. if your looking to call vlc istelf and pass the playlist, this is a simple shellexecute using the windows api, look at my answer in this post. It has a very nice sample in doing just that.
Jump to PostAs long as the file is associated with VLC opening the file will use VLC to open it. Depending on the setting in VLC it should start playing.
Jump to PostAccording to members that show up in intellisense you should be able to do something like this:
For I= 0 to axvlcplugin21.playlist.items.count-1 axvclplugin21.playlist.playitem(I) next
Jump to PostUse a loop to add multiple files:
With AxVLCPlugin21 .CtlVisible = True .playlist.items.clear() ' Loop until user presses Cancel button and ' add files to the playlist. The code _does not_ check the type of the file! Do Until OpenFileDialog1.ShowDialog() <> Windows.Forms.DialogResult.OK .playlist.add(OpenFileDialog1.FileName) Loop .playlist.play() .Toolbar …
All 13 Replies
tinstaafl 1,176 Posting Maven
swathi sajja 0 Light Poster
AarenAce 0 Light Poster
tinstaafl 1,176 Posting Maven
swathi sajja 0 Light Poster
tinstaafl 1,176 Posting Maven
swathi sajja 0 Light Poster
tinstaafl 1,176 Posting Maven
swathi sajja 0 Light Poster
Teme64 215 Veteran Poster
swathi sajja 0 Light Poster
swathi sajja 0 Light Poster
André_15 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.