Instead of creating a new folder in users application folder under program files and putting there some visible resources, embedding those resources to single executable is better. in this snippet i will show playing an embedded sound file.
Embedding Resources to Executable
/* create a windows application and right click on the properties in the solution
explorer. open resources.resx click add resource. select your sound file.
create a windows form and a button and in the buttons event handler write the following */
private void Play_Click(object sender, EventArgs e)
{
System.Media.SoundPlayer sp = new System.Media.SoundPlayer(Properties.Resources.beep_01);
sp.Play();
}
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.