Question : Access Runtime Error; User does not have Access

I have a user that does not have access and I have installed the access 2003 runtime from the Developer's Extensions on their Machine. After about 10 or 15 minutes when the user is working in the db he gets booted out because of an access runtime error. What he has e-mailed me is this information, not sure if it will help any:
AppName: msaccess.exe      AppVer: 11.0.5614.0     AppStamp:3f3c8e3c

ModName: msaccess.exe      ModVer: 11.0.5614.0      ModStamp:3f3c8e3c

fDebug: 0       Offset: 0002ccec


This is the only user that is using the RunTime version and does not have access on his machine. The other users do have access and have not had the problem this user is having. If any could help it would be greatly appreciated.

Thanks

Answer : Access Runtime Error; User does not have Access

>What do u mean by unless it is handled in code?
Something like this...

Public Function SomeFunction() as boolean

On Error Goto error_handler   'This means if your app throws an error, code will jump to error_handler

... your code goes here, which may or may not cause an error...

exit_function:
   'Code executed without any errors.
   Exit Function

error_handler:
   Msgbox "Holy , this application has an error in it."
   'Do something here like log the error, handle it gracefully, or ignore it.
   Goto exit_function

End Function
Random Solutions  
 
programming4us programming4us