[Help]Save music on a music Player
(I searched 3 times, didn't find anything.)
Okay you add the music you want, it plays it. . .then you restart it and you have to add the music again. . .How would you do it so you don't have to?
Then when you pull it up you have to click one of the songs first. How would I get it to auto-play on start up. (But if theres no music it doesn't do anything.)
(Off topic: I'm also trying to find out how to make the right-click pop-up window. . .)
Thank you. (+1 Thanks & +Rep)
Well idk about saving the song, but to auto play on start up have like a checkbox somewhere. Then double click it, should bring up Check_Changed event. Then create a new setting , caleld whatever you want and set it to Boolean, False.
In the check_changed event, put in this code:
[php]If CheckBox1.Checked = True Then
My.Settings.(Yoursettingnamehere) = True
Else
My.Settings.(Yoursettingnamehere) = False
End If[/php]
On your Form_Load have this code:
[php]If My.Settings.(settingnamehere) = True Then
'Put your music play code here
End If[/php]
That shuld work xD