I am using visual studio 2005 (.net version 2.0+) to create a windows application. The functionality of the project corresponds to the ideal design, there is only one problem when publishing the project.
I use the MouseHover method to change the image (s) used to make an attractive user interface when I hover over the image. Some other image is loaded in its place ... and in the mouseleave method the same image is saved back.
Now the problem is that debugging this function works correctly, but when publishing and using the window does not load the image (because the installed folder does not contain these images ) .. How to link supporting files such as images, text files and any other files, such how xml with exe ?? I mean, is there an ideal way to publish a project?
source
share