I'm trying to play all videos from an specific folder in Visual Basic. I'm not sure what control I should use because WMP shows the controls and I want to reproduce the videos in a form without any controls. The other option may be MS TV Video Control.
My main issue right now is how to make the control play the videos from a folder without stopping and without showing the Play/Stop buttons.
I could do something like this:
For Each foundFile As String In My.Computer.FileSystem.GetFiles(
My.Computer.FileSystem.SpecialDirectories.MyDocuments)
listBox1.Items.Add(foundFile)
Next
But I'm not sure how to make the control play everything in the list.