Hi, I'm using VB.NET 2005 and I can't seem to play any video file that is stored on my computer. I'm using WindowsMediaPlayer but it's not working. Here is my code that is not working:

Private Sub PlayButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PlayButton.Click

'This should play the video file but is not working
MediaPlayer1.URL = My.Application.Info.DirectoryPath & "Resources\video.wmv"
MediaPlayer1.Ctlcontrols.play()


I will appreciate your help.