![enter image description here][1]i have a windows application in C# with a setup project !!!
I used Image.FromFile("filename")
in my application but when make a setup project from it , and run it , it dose not show my pictures ! why ?
try
{
string timeOfDay = Convert.ToInt32(DateTime.Now.TimeOfDay.ToString().Substring(3, 2)).ToString();
this.BackgroundImage = Image.FromFile("BackGround\\Flowers (" + timeOfDay + ").jpg");
}
catch (Exception ex)
{
this.BackgroundImage = Image.FromFile("\\BackGround\\Flowers (59).jpg");
}
First you have to add the Image file to your Visual Studio project unless you do this image can not be embedded into the output assembly.
Project Folder > Images
First add a custom folder and move your image to that folder and add the same folder to your VS project. now go to Image property and set the Build Action as "Resource".