Library code snippets

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

Comments

Leave a comment

Sign in or Join us (it's free).

 Chris2

Related discussion

Related podcasts

  • Christian Beauclair

    14 mai 2008 (�mission #0074) ::.Christian Beauclair: Stratégies de migration VB6 vers .NET Nous discutons avec Christian Beauclair des stratégies de migration VB6 vers .NET. Entre autres, nous discutons comment utiliser le "VB 6 Code Advisor" et le "Interop Forms Toolkit" pour ajouter la puiss...

Want to stay in touch with what's going on? Follow us on twitter!