Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

We have on the company I work for an application built in Delphi V with Crystal Reports 8.

We all know that Crystal & Delphi can be temperamental sometimes and the worst thing is, nearly no detail on the error. Also there is a big lack of documentation on the web about this. There's lot of people with similar issue but no solution.

The error I'm talking about in particular is the one on the image below. This happens when trying to print any Crystal Reports on screen.

Error 533

This has happened sometimes in the clients computer and it was hard for us to replicate on our environment. Since it's an old version of Crystal it is very hard to find any helpful documentation to know the exact source of the problem.

share|improve this question

1 Answer

The problem in the registry than can be cause by a double installation of BDE. This can happen for several reasons:

  • Reinstalled the application or borland without uninstalling it before
  • The uninstall was not fully completed
  • Installed a second application using BDE

To verify this, I went into the registry and found the following:

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Borland \ Database Engine] "DLLPath" = "C: \ \ Program Files \ \ Common Files \ \ Borland Shared \ \ BDE" in the form of path1, path2.

Now in order to fix this, you need to do the following:

  • Make a backup of the BDE Key in case anything goes wrong.
  • Close your application.
  • Open Regedit (Start> Run> regedit.exe)
  • Go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Borland \ Database Engine
  • Then double click on the key DLLPath editing and 1 of the 2 pathways (Check which is the correct one according to your installation). You should have two paths like in the image below. Remove one of them

Registry with two paths

This should have only one path like in the image below.

Registry with one path

Close RegEdit

Now you can reopen your application and try to open any report on screen. If you've followed the simple steps correctly you shouldn't get any error and you should be able to see the reports on screen.

This happened particularly in my application, but the same process needs to be followed on applications using Crystal Reports and BDE Admin.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.