My vb.net windows forms application plays wav files. I want to allow the user to "import" their own wav files in addition to the ones I provide already in the app. Right now, the wav files are stored in My.Resources and played from there, so ideally, I'd add their wav files to My.Resources, but, from what I have learned, this is not possible to do dynamically at runtime. So, plan B: Give the user a browse button, and copy their wav files to a folder where I then access them and play them in the app. I'd like to put their wav files in a WAV folder I create in the application folder.
Part 2 of the story: I also have a setup project that creates a setup.exe. How can I ensure that the setup program will copy that folder and its contents, put it in their application folder during installation, then find it there when it runs after setup?
Thanks for your help!
Part 2 of the story: I also have a setup project that creates a setup.exe. How can I ensure that the setup program will copy that folder and its contents, put it in their application folder during installation, then find it there when it runs after setup?
Thanks for your help!