On the network drive, the users are getting a runtime error 2585..

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

....but anyone with Admin privileges has no problem running a report. (Error
2585: This action can't be carried out while processing a form or report
event."

Details: Access 2002 running default 2000 db
The code is DoCmd.OpenReport
Those with Admin status on their computer have no problem
Those with user status on their computer are getting a runtime
error 2585
The database is on a share drive, in development
Jet Security access has not been set up yet, permissions are
same for all

QU: Is this a form/report loading issue (form to run report stays open as
report is using the combo boxes as parameters)?
Or, is this a permissions issue?
 
Microsoft Access reads some DLL while using certain functions, if the user
does not have access to read those DLL because they are not registered under
their user id they will experience the problem you are seeing, the easy fix
is to give admin rights to those users in the machine they are working, but
if that is not an option you can try any of these:

1. Identify the functions used in the application and their related DLLs,
then register each DLL for their use (start/run regsvr32.exe "DllPath") when
they are logon.

2. Or Create "runtime" versions of your application including those
libraries in the setup, to do this you'll need the developer's version of
Access XP, or Developer's extension for Access 2003,
 
Back
Top