Jump to content

want a tut for a MP3 player in VB

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
shadowhound

shadowhound

    Learning Programmer

  • Members
  • PipPipPip
  • 30 posts
I have tried the micro mp3 but i get errors so i am wondering if anyone has a tut and source code of how to make a small mp3 player that will just play mp3s and also make a music list so like the next time you start the mp3 player it saves the music from before you can choose to delete it but i don't want an implanted mp3 using windows media player because thats an easy way.

#2
Ollox360

Ollox360

    Newbie

  • Members
  • PipPip
  • 18 posts
Visual basic 6.0 Code:
Before do anything add Components Windows Media Player

Quote

Private Sub Form_Load()
Text1.text = "<Path to mp3 file>"
End Sub

Private Sub Command1_Click()
WindowsMediaPlayer1.URL = Text1.Text
WindowsMediaPlayer1.Enabled = True
End Sub