Creating a DVD Player

Creating a DVD Player

You'll need the MSWEBDVD.DLL file to use this. You can download it here.

Creating a DVD player with this control is quite easy. Of course, you need a DVD-ROM on your computer as well.

Add 6 Command Buttons named: cmdPrevChapter, cmdPlay, cmdStop, cmdPause, cmdNextChapter, and cmdReplay. Then, go to your ProjectComponents field and find the MSWEBDVD Type 1.0 Library. Select it and click OK. Then, select the new component called MSWebDVD. Create the size you want your DVD player. It may pause your computer or slow it down for a moment no matter what speed you have, as I have an 800 MHz P3. Finally, add this code:

Private Sub cmdPrevChapter_Click()
Form1.dvd1.PlayPrevChapter
End Sub

Private Sub cmdPlay_Click()
Form1.dvd1.Play
End Sub

Private Sub cmdStop_Click()
Form1.dvd1.Stop
End Sub

Private Sub cmdPause_Click()
Form1.dvd1.Pause
End Sub

Private Sub cmdNextChapter_Click()
Form1.dvd1.PlayNextChapter
End Sub

Private Sub cmdReplay_Click()
Form1.dvd1.ReplayChapter
End Sub

You might also like...

Comments

 Chris2

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“You can stand on the shoulders of giants OR a big enough pile of dwarfs, works either way.”