I have a project that uses crystal reports. I created a setup project with the needed merged modules but the reports still don't work. What else do i need to install?
thank you
Printable View
I have a project that uses crystal reports. I created a setup project with the needed merged modules but the reports still don't work. What else do i need to install?
thank you
All reports have build action property set to Embedded Resource . So I need to copy them manually.
The reports files are placed in a directory same level as Bin directory. Where do I put this directory in the setup project?
Embedded Resource means the rpt files are actually copiled into your EXE. You should not need to actually include them. This is good because it prevents people from messing with the .rpt files, but its bad because if you need to change one of the reports, you need to recompile the whole exe and send that out.