Crystal Deployment Problem [RESOLVED]

jeva39

Well-known member
Joined
Jan 28, 2005
Messages
135
Location
Panama
Programming Experience
1-3
I finish an VB.NET application to install in a computer with Windows 98. Framework 1.1, MDAC 2.8 are installed. The application run OK except for the Crystal Reports. I use this MSDN instructions for deployment:

To deploy your application, you need to create a setup project and add the necessary merge modules to your application before you build your solution.

1. Open your Windows application.
2. In the Solution Explorer, right-click your Windows application solution, point to Add then click New Project.
3. In the Add New Project dialog box, select Setup and Deployment Projects in the Project Types pane and select Setup Project in the
Templates pane. Click OK.
4. In the Solution Explorer, right-click the Setup Project, point to Add then click Project Output.
5. In the Add Project Output Group, select Primary output and click OK. Any dependencies, such as the Crystal_Managed2003.msm, are added automatically.
6. In the Solution Explorer, right-click the Setup Project, point to AddMerge Module. then click
7. In the Add Modules dialog box, select the following merge modules to add to your Setup project and click Open:
* Crystal_Database_Access2003.msm
* Crystal_Database_Access2003_enu.msm
* Crystal_regwiz2003.msm

For a description of these merge modules see Crystal Reports Merge Modules.
8. In the Solution Explorer, right-click the Crystal_regwiz2003.msm file and choose Properties.
9. In the Properties window, expand MergeModuleProperties and enter a valid license key in the License Key properties box.

Note: Providing the license key is a mandatory step whenever you deploy a Crystal Reports for Visual Studio .NET application.

A license key will be given to you once you have registered Crystal Reports for Visual Studio .NET. You can find the license key in the

About dialog box. From the Help menu, choose About Microsoft Development Environment. The keycode is listed in the Installed Products
field.
10. From the Build menu, choose Build Solution to build your application.

When deploying to a client or server computer, always ensure that the computer already has the .NET Framework installed.



All the above steps are completed OK, I include the report in the Setup, the Path for the .RPT are correct, the Report Form open but don't read the report. The error:

FAILED LOADING REPORT.

Please can tell me what is wrong?

Thanks...
 
BINGO!!!!! All work OK!! Is possible, when I verify the DB in the Reports, they allways was saved in the Caritas Directory. I manually must save all the reports in the BIN Directory before compile. I don't made this and the App continue reading the old (bad) reports. I corrected this Jorge-Bug and all OK.

Thanks very, very much for your help, kulrom!!! Now, the App is, finally, finished.. Regards. :)
 
Back
Top