Access97-Installation crashes after NOKIA-Software-Installation

  • Thread starter Reiner Harmgardt
  • Start date
R

Reiner Harmgardt

Hi NG,

After the installation of NOKIA-Handy-Software tool
our Access97-Application crashes with Error:
Undefined Function in 'FY' (is a Function written by us
which was running perfect so far)

I guess that there's is something wrong with the lib's.
Maybe the NOKIA Software has overwritten any of
the existing ones with newer versions.

Anybody ever had this problem too?

Thanks for helping

Reiner
 
D

Douglas J. Steele

It's likely a References problem. I would expect, like you, that one of the
existing References was overwritten by the installation. That's pretty
common.

Open any code module, then select Tools | References from the menu bar.
Examine all of the selected references.

If any of the selected references have "MISSING:" in front of them, unselect
them, and back out of the dialog. If you really need the reference(s) you
just unselected (you can tell by doing a Compile All Modules), go back in
and reselect them.

If none have "MISSING:", select an additional reference at random, back out
of the dialog, then go back in and unselect the reference you just added. If
that doesn't solve the problem, try to unselect as many of the selected
references as you can (Access may not let you unselect them all), back out
of the dialog, then go back in and reselect the references you just
unselected. (NOTE: write down what the references are before you delete
them, because they'll be in a different order when you go back in)
 
R

Reiner Harmgardt

Hi Doug,

thanks a lot for your help.

Since most of the users here have the Runtime-Version installed
i don't have the possibility on this machines to go into the code of
a module and do what you mentioned below.

i can't see of any solutions for that case instead of installing the full
version.
Do you see annother way of solving the problem?

Thanks a lot and have a nice day.

Regards

Reiner
 
D

Douglas J. Steele

On a non-runtime machine where it's working, determine what all of the
referenced files are, where Access is expecting to find them, and then
determine the exact version of each.

Then, on each runtime machine where there's a problem, make sure that the
same version of each file exists in the same place as where it worked.

The following code will help you determine each of the references:

Sub ListReferences()
Dim refCurr As Access.Reference

For Each refCurr In Access.References
Debug.Print refCurr.Name & ", located at " & refCurr.FullPath
Next refCurr

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top