Sorry you could have had easy points.
I missed the obvious. The documentation is just about zero. In fact it lead me to believe that the audio method was correct as its help talked of opening a video window. But I should have looked more clearly. USE VIDEO
VB Code:
Imports microsoft.directx.AudioVideoPlayback
Imports Microsoft.DirectX
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim carrot As Video
carrot = Video.FromFile("c:\funny.mpeg")
carrot.Owner = Me
carrot.Play()
End Sub
End Class