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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

20532 Missing database dll

Status
Not open for further replies.

juls3

Programmer
Jan 14, 2003
7
US
I receive the error "20532 - Missing database dll" on the .action in the code below. The code works fine on the development machine, and on one other. When I load it on the 3rd machine I get the error. I've researched this and all articles I've found point to msvcp60.dll and crpe32.dll not being in the distribution package. They are both there. Any suggestions?

With Form1.Crystal1
.DataFiles(0) = "c:\program files\dc analysis reports\results.mdb"
.ReportFileName = "c:\program files\dc analysis reports\proglist.rpt"
.DiscardSavedData = True

If intDestination = 0 Then
.WindowTitle = "Programmer Checklist"
.WindowState = crptMaximized
.WindowHeight = 850
.WindowWidth = 1000
.WindowTop = 0
.WindowLeft = 0
.Destination = crptToWindow
.Action = 1
ElseIf intDestination = 1 Then
.Destination = crptToPrinter
.PrintReport
End If

End With
 
Is everything registered properly (DLL's)?

What products are you using?

There are numerous articls on the CD KB about this sort of thing, but it's version and database specific

This is a Seagate Info forum, and it sounds like you might be using VB and Crystal Reports. Since this forum sees less action than the Crystal Decisions: Crystal Reports 3 Integrate forum, I'd try posting there, and supply specifics about your environment.

You might also check:


-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top