check if a reference is missing

  • Thread starter Thread starter reidarT
  • Start date Start date
R

reidarT

I have an application with FE and BE.
When I copy the front end to each computer I would like to check if all the
references are valid to avoid
'Missing' in the refence list.
Is there any way to do that.
reidarT
 
Attempting to programmatically determine whether references are broken is
rather problematic, since the code you are using to do this will not work
properly if VBA realizes that any reference is broken. It is therefore
essential to run this code before anything else, to disambiguate all
references you use so that VBA does not work out that there is a broken
reference, and not to simply test the IsBroken property.

More info:
http://www.trigeminal.com/usenet/usenet026.asp?1033
 
Back
Top