Access Error Messages

  • Thread starter Thread starter DanW
  • Start date Start date
D

DanW

Please help me identify the cause and fix for error #3044
and #3075? The program locks up as it looks for the
current path.
Thank You
 
Does Access provide a description too? I'm not familiar
with the numbers off the top of my head.


Chris Nebinger
 
Dan,

Both 3044 and 3075 are "Argument not optional", which means you are probably
trying to execute a method or function without specifying all of its
arguments.

Open any code module, and select Compile from the Debug menu. Fix the error
that's highlighted, and repeat the process until all errors are fixed.

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Microsoft Access 2003 VBA Programmer's Reference
http://www.wiley.com/WileyCDA/WileyTitle/productCd-0764559036.html
 
Or, perhaps more useful in this situation where you know the error number
would be AccessError(3044) and AccessError(3075)
 
Back
Top