Play music with media player
Play music with media player
Rate Play music with media player
(2(2 Vote))
'microsoft common dialog6.0 : name : cd
'command button : name : open
'command button : name : play
Private Sub Command1_Click()
cd.Filter = "Mp3|*.mp3|midi|*.mid|wav|*.wav"
cd.ShowOpen
End Sub
Private Sub Command2_Click()
md.FileName = cd.FileName
md.Play
End Sub
Play music with media player Comments
No comments yet — be the first to post one!
Post a Comment