is there anyone can help solve my problem, my reports are already done but i dont know how to execute it in VB. can u give me a sample code that show this kind of topic
'Declaration area
*********************
Dim crystal As CRAXDRT.Application 'LOADS REPORT FROM FILE
Dim Report As CRAXDRT.Report
Public a As String
*********************
a = App.path & "your-report-name.rpt" Give the Name of your Report here
Set crystal = New CRAXDRT.Application 'MANAGES REPORTS
Set Report = crystal.OpenReport(a) 'OPEN OUR REPORT
Report.DiscardSavedData
Report.Database.SetDataSource rsBldata
Report.EnableParameterPrompting = False
Report.EnableSelectDistinctRecords = True
Report.EnableGeneratingDataForHiddenObject = False