Is there any way to identify unused forms / reports / questions in a compile access (2003) project?
Edit: There is no check for unused object menu items in my database window.
Yes, in the database window, the object (form / report / etc) Right click on and choose "object dependency". If none of this is visible, then its use is probably not possible.
Although it does not tell you that it is called somewhere in the VBA code though you can almost completely eliminate that possibility by looking for the object name when looking at VBA and making sure that " Instead of "current module" you have "current project" selected. It does not prevent some evil encode by adding the object name together from the string; But this is unlikely.
Comments
Post a Comment