Print Page | Close Window

Running and viewing Crystal Report via VB

Printed From: Crystal Reports Book
Category: Crystal Reports 9 through 2020
Forum Name: Technical Questions
Forum Discription: Formulas, charting data, Crystal syntax, etc.
URL: http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=22395
Printed Date: 30 Apr 2024 at 7:28pm


Topic: Running and viewing Crystal Report via VB
Posted By: jaytyo
Subject: Running and viewing Crystal Report via VB
Date Posted: 23 Jul 2017 at 3:51am
We are using GE's iFix application which supports VB. We would like to run some Crystal Reports that I have developed from a link/button in iFix but don't know how to make the call. We can get a reports parameter page to pop up using the following code, but then get an error on authentication to the database and don't know how to call the viewer. The ODBC data source is setup on the machine same as in the report. Are we missing a call to set the database security and how do we get the report to popup in the report viewer window?

Private Sub CommandButton2_Click()
Dim CrApp As CRAXDRT.Application
Dim CrRep As CRAXDRT.Report
Set CrApp = New CRAXDRT.Application
Dim strquery As String

Set CrRep = CrApp.OpenReport("D:\Reports\ReportName.rpt")
CrRep.DiscardSavedData

...

Set CrRep = Nothing
Set CrApp = Nothing

End Sub

Anyone know how to make this call work to run and view the report would be very much appreciated.

Jay Tyo

-------------
Thanks,

Jay Tyo



Replies:
Posted By: lockwelle
Date Posted: 24 Jul 2017 at 8:58am
off the top of my head, I would say that you need to set the reports datasource. i haven't used odbc in a long time so i am not sure, but that is what I would google.

HTH


Posted By: hilfy
Date Posted: 25 Jul 2017 at 3:33am
You can get the help files and other information here: https://wiki.scn.sap.com/wiki/display/BOBJ/Crystal+Reports%2C+Developer+for+Visual+Studio+Downloads.

-Dell

-------------
Proviti, Data & Analytics Practice
http://www.protiviti.com/US-en/data-management-advanced-analytics - www.protiviti.com/US-en/data-management-advanced-analytics



Print Page | Close Window