Can anybody tell me .How should i open Video file MPG/MPEG/BUP Using MMControl.i simple want to open a video file Using Bt_Open Button.and simple want to play Using Bt_Play Button.But the following Code is Not Working.
Code:
Private Sub Bt_Play_Click()

MMControl1.Wait = True
MMControl1.Command = "Play"
End Sub

Private Sub BtOpen_Click()
CommonDialog1.ShowOpen
MMControl1.FileName = CommonDialog1.FileName
MMControl1.Wait = True
MMControl1.Command = "Open"
End Sub