PC Review


Reply
Thread Tools Rate Thread

Access97-Installation crashes after NOKIA-Software-Installation

 
 
Reiner Harmgardt
Guest
Posts: n/a
 
      4th Aug 2004
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


 
Reply With Quote
 
 
 
 
Douglas J. Steele
Guest
Posts: n/a
 
      4th Aug 2004
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)


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(No private e-mails, please)


"Reiner Harmgardt" <(E-Mail Removed)> wrote in message
news:Ru0Qc.10$(E-Mail Removed)...
> 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
>
>



 
Reply With Quote
 
Reiner Harmgardt
Guest
Posts: n/a
 
      4th Aug 2004
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

"Douglas J. Steele" <NOSPAM_djsteele@NOSPAM_canada.com> wrote in message
news:(E-Mail Removed)...
> 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)
>
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (No private e-mails, please)
>
>
> "Reiner Harmgardt" <(E-Mail Removed)> wrote in message
> news:Ru0Qc.10$(E-Mail Removed)...
> > 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
> >
> >

>
>



 
Reply With Quote
 
Douglas J. Steele
Guest
Posts: n/a
 
      4th Aug 2004
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



--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(No private e-mails, please)


"Reiner Harmgardt" <(E-Mail Removed)> wrote in message
news:ag4Qc.11$(E-Mail Removed)...
> 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
>
> "Douglas J. Steele" <NOSPAM_djsteele@NOSPAM_canada.com> wrote in message
> news:(E-Mail Removed)...
> > 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)
> >
> >
> > --
> > Doug Steele, Microsoft Access MVP
> > http://I.Am/DougSteele
> > (No private e-mails, please)
> >
> >
> > "Reiner Harmgardt" <(E-Mail Removed)> wrote in message
> > news:Ru0Qc.10$(E-Mail Removed)...
> > > 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
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Installation of software for Nokia mobile 6120 Mohamed Windows Vista General Discussion 2 18th Nov 2008 07:48 PM
Outlook 2007, Nokia N70, Nokia PC Suite and Video Call software Sulasno Microsoft Outlook Discussion 2 3rd Feb 2008 01:30 PM
problems with excel after installation of Access97 Chanchito Microsoft Excel Misc 1 24th Nov 2004 11:08 AM
Software Installation Order in GPO Software Installation feature =?Utf-8?B?SnVsaWVu?= Microsoft Windows 2000 Group Policy 4 26th Jun 2004 12:09 PM
It suddently finish installation in the middle of software installation process ivan Windows XP Setup 0 25th Aug 2003 06:34 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:51 PM.