I have a project in vb 2010 that im working on. I want to know if i publish this and make it downloadable when it is done will my background music be heard by others?
Im pretty sure it’s only playing on mine because the song is on my computer right?
Is there a code to make it so it stays even if i make this program downloadable?
You need to have the background music distributed with the program. It should be possible to include the music file as a resource in your project, and then to pass that resource to what you use to play the audio.
Alternatively, you could simply package the music file with your executable (whether you’re using a zip or an installer), and then find the file in the same directory as your application, and play it that way.