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.
want a tut for a MP3 player in VB
Started by shadowhound, Aug 26 2008 08:17 AM
1 reply to this topic
#1
Posted 26 August 2008 - 08:17 AM
|
|
|
#2
Posted 10 October 2008 - 10:19 PM
Visual basic 6.0 Code:
Before do anything add Components Windows Media Player
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
Text1.text = "<Path to mp3 file>"
End Sub
Private Sub Command1_Click()
WindowsMediaPlayer1.URL = Text1.Text
WindowsMediaPlayer1.Enabled = True
End Sub


Sign In
Create Account


Back to top









