Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DLL Definition

Status
Not open for further replies.

Wacki

Programmer
Oct 28, 2004
35
US
Can anyone tell me what craxdrt_res_enu.dll is used for, and where I can find a copy of it. We have searched the CD, and all developers machines, but are unable to find it. Any help is appreciated.

TIA
Wacki
 
File Name: craxdrt_res_en.dll
Description: Crystal Reports ActiveX Designer Runtime Support
Default Location (for CR 10 Developer): C:\Program Files\Common Files\Crystal Decisions\2.5\bin

I'm not really sure what it's used for, but since it isn't necessary for deployment, I would guess that it's used in Development mode, particularly if you're creating reports within the VB IDE (.dsr's).

-dave
 
Thanks That's just what I needed to know.

Wacki
 
Okay, Now that we have tried again, it seems that we are still getting an error "Load report Failed" we get this twice in a row and can't tell what is causing it if not for the file mentioned above. HELP!!
 
Can you post:

1) The references used in the project
2) CR version
3) The code you're using to open a report
4) Programming language (I'm assuming VB6 based on previous posts)

-dave
 
References:
Crystal ActiveX Report Viewer Library 10.0
Crystal ActiveX Designer Run Time Library 10.0
Crystal ActiveX Designer and RunTime Library 10.0

CR Version 10.0

With frmReport.CRViewer1
If Not crRevenueByAircraft Is Nothing Then
Set crRevenueByAircraft = Nothing
Set crRevenueByAircraft = New crRevenueByAircraft
End If
With crRevenueByAircraft
With datcmd1
''set parameters for SP
Set rs = datcmd1.Execute
End With
.EnableParameterPrompting = False
.Database.SetDataSource rs
.ReportSource = crRevenueByAircraft
.Visible = True
.ViewReport
End With

Language = vb6.0

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top