Ran the Dotnetfx.exe file on a PC to install the .NET framework. Then copied all of my application files to the PC and everything runs fine except for when my code makes a call to a Crystal ReportDocument object. This is the code used to call up the ReportDocument object:
Imports CrystalDecisions.CrystalReports.Engine
Public Class
Public Sub LoadReport(ByRef objRate As Rate)
Dim crpt As New ReportDocument() 'Bombs out here!
.....................
.....................
End Sub
................
................
End Class
Imports CrystalDecisions.CrystalReports.Engine
Public Class
Public Sub LoadReport(ByRef objRate As Rate)
Dim crpt As New ReportDocument() 'Bombs out here!
.....................
.....................
End Sub
................
................
End Class