views:

290

answers:

2

I'm having a licensing issue with my vb6 app and crystal reports 8.5. From time to time it keeps popping up saying

"Not enough Concurrent Access Licenses to log you on ..."

I've read some stuff online, saying I should close all instances of the report object and set all references to nothing when closing a report etc ... That does not work. Also, the application architecture does not use a crystal report server, all files used are distributed on the local machine. Anything else I can do ?

+1  A: 

Does this help?

astander
+1  A: 

1) Make absolutely sure you are actually closing the report object. It's been a long time since I saw this error.
2) Load any report with the CROpenReportByTempCopy flag set, using the CRAXDRT.Application object's OpenReport method. Also make sure to set the Application object to Nothing as well.

Some code on how you're loading/using/closing the reports would be good...

CodeByMoonlight