Hi All,
I have Crystal 10 Developer Edition.
I created a program with Visual Studio 2003 w/ VB that loads Crystal
Reports which are stored in a shared folder.
The ff code is what I use to load reports in a shared folder.
Private Sub LoadReport(ByVal reportName As String)
Dim Report As New ReportDocument()
' Open a temporary copy of the report.
Report.Load(reportName, OpenReportMethod.OpenReportByTempCopy)
' Preview the report.
crystalReportViewer1.ReportSource = Report
End Sub
I've made a SETUP file a added the Crystal 10 MergeModule
(CrystalReports10_NET_EmbeddedReporting.msm) which is the only one I
need to make my program work in other Client PCs.
My question is, am I breaking any License agreement with this setup?
I'm thinking since I have the Developer License, I am free to use
Crystal 10 APIs. And since the Client PCs I'll be installing my
program to is in the same Company, they wouldn't need to have license
to view the reports with the program I created since it is covered in
the Crystal 10 Developer license that I am free to develop with CR10
APIs and package it with CR10 runtimes/mergemodules.
Anyone with experience or insights on this will be very much
appreciated.
Thanks,
Henry