Can you tell me Why *.bup Video File is Not working .Mpg/Mpeg/Mp3/WMV/WAV file is working.
But some other type of Audio File is Not Working.Kindly let me know the idea.
Code:
Private Sub Bt_Play_Click()
CommonDialog1.Filter = "VideoFile(*.mpg)|*.mpeg|ALL Files(*.*)|*.*"
CommonDialog1.ShowOpen
MMControl1.FileName = CommonDialog1.FileName
Debug.Print MMControl1.FileName
MMControl1.Wait = True
MMControl1.Command = "Open"
MMControl1.Command = "Prev"
MMControl1.Command = "PlAY"
End Sub

Private Sub Form_Load()
Form1.Caption = MMControl1.FileName
End Sub