A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Error at Runtime (Function not available in querie expressions)



 
 
Thread Tools Display Modes
  #1  
Old July 15th, 2009, 04:39 PM posted to microsoft.public.access.tablesdbdesign
Gerry
external usenet poster
 
Posts: 112
Default Error at Runtime (Function not available in querie expressions)

I have an access program that is packaged and distributed on a network in my
office. The program runs great on some machines and on others it doesn't.
I get a message "Function is not available in expressions in Queries". I am
guessing that maybe this is something to do with security but I can not
figure it out.
The packaged product includes the Access Runtime.
Can somebody make any suggestions?
  #2  
Old July 15th, 2009, 05:46 PM posted to microsoft.public.access.tablesdbdesign
Klatuu
external usenet poster
 
Posts: 7,074
Default Error at Runtime (Function not available in querie expressions)

It is more likely some of the computers do not have some necessary references
set. Open the VBA editor on a machine where it all works and look at Tools
- References. Record all the references that are checked. The do the same
on a machine where it does not work. You will likely find there are some not
checked or could be marked as "missing". If one is not checked, check it.
If it says Missing, try to locate the file it references. If it can't be
found, it needs to be installed.

I have seen instances in a corporate environment where a consistent install
was not done and some files were missing. In this case, it is best to
reinstall Access.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

I have an access program that is packaged and distributed on a network in my
office. The program runs great on some machines and on others it doesn't.
I get a message "Function is not available in expressions in Queries". I am
guessing that maybe this is something to do with security but I can not
figure it out.
The packaged product includes the Access Runtime.
Can somebody make any suggestions?

  #3  
Old July 15th, 2009, 06:18 PM posted to microsoft.public.access.tablesdbdesign
Gerry
external usenet poster
 
Posts: 112
Default Error at Runtime (Function not available in querie expressions

Thanks Klatuu,
This happens on computers that only have the Access Runtime installed. How
do I determine what is missing in this case? as I can't open the full access?

Gerry

"Klatuu" wrote:

It is more likely some of the computers do not have some necessary references
set. Open the VBA editor on a machine where it all works and look at Tools
- References. Record all the references that are checked. The do the same
on a machine where it does not work. You will likely find there are some not
checked or could be marked as "missing". If one is not checked, check it.
If it says Missing, try to locate the file it references. If it can't be
found, it needs to be installed.

I have seen instances in a corporate environment where a consistent install
was not done and some files were missing. In this case, it is best to
reinstall Access.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

I have an access program that is packaged and distributed on a network in my
office. The program runs great on some machines and on others it doesn't.
I get a message "Function is not available in expressions in Queries". I am
guessing that maybe this is something to do with security but I can not
figure it out.
The packaged product includes the Access Runtime.
Can somebody make any suggestions?

  #4  
Old July 15th, 2009, 06:25 PM posted to microsoft.public.access.tablesdbdesign
Klatuu
external usenet poster
 
Posts: 7,074
Default Error at Runtime (Function not available in querie expressions

What commands are failing? It may be you are doing something that is not
allowed in RunTime. I don't have a list of those, but there are some.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

Thanks Klatuu,
This happens on computers that only have the Access Runtime installed. How
do I determine what is missing in this case? as I can't open the full access?

Gerry

"Klatuu" wrote:

It is more likely some of the computers do not have some necessary references
set. Open the VBA editor on a machine where it all works and look at Tools
- References. Record all the references that are checked. The do the same
on a machine where it does not work. You will likely find there are some not
checked or could be marked as "missing". If one is not checked, check it.
If it says Missing, try to locate the file it references. If it can't be
found, it needs to be installed.

I have seen instances in a corporate environment where a consistent install
was not done and some files were missing. In this case, it is best to
reinstall Access.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

I have an access program that is packaged and distributed on a network in my
office. The program runs great on some machines and on others it doesn't.
I get a message "Function is not available in expressions in Queries". I am
guessing that maybe this is something to do with security but I can not
figure it out.
The packaged product includes the Access Runtime.
Can somebody make any suggestions?

  #5  
Old July 15th, 2009, 06:35 PM posted to microsoft.public.access.tablesdbdesign
Gerry
external usenet poster
 
Posts: 112
Default Error at Runtime (Function not available in querie expressions

It looks like it is mostly the Mid function that is failing.

Gerry

"Klatuu" wrote:

What commands are failing? It may be you are doing something that is not
allowed in RunTime. I don't have a list of those, but there are some.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

Thanks Klatuu,
This happens on computers that only have the Access Runtime installed. How
do I determine what is missing in this case? as I can't open the full access?

Gerry

"Klatuu" wrote:

It is more likely some of the computers do not have some necessary references
set. Open the VBA editor on a machine where it all works and look at Tools
- References. Record all the references that are checked. The do the same
on a machine where it does not work. You will likely find there are some not
checked or could be marked as "missing". If one is not checked, check it.
If it says Missing, try to locate the file it references. If it can't be
found, it needs to be installed.

I have seen instances in a corporate environment where a consistent install
was not done and some files were missing. In this case, it is best to
reinstall Access.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

I have an access program that is packaged and distributed on a network in my
office. The program runs great on some machines and on others it doesn't.
I get a message "Function is not available in expressions in Queries". I am
guessing that maybe this is something to do with security but I can not
figure it out.
The packaged product includes the Access Runtime.
Can somebody make any suggestions?

  #6  
Old July 15th, 2009, 08:05 PM posted to microsoft.public.access.tablesdbdesign
Klatuu
external usenet poster
 
Posts: 7,074
Default Error at Runtime (Function not available in querie expressions

Very strange. I have no idea what would cause one function that lives with
other functions to fail in runtime.
Did you get a clean compile before you deployed the application? You should
always be sure of that.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

It looks like it is mostly the Mid function that is failing.

Gerry

"Klatuu" wrote:

What commands are failing? It may be you are doing something that is not
allowed in RunTime. I don't have a list of those, but there are some.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

Thanks Klatuu,
This happens on computers that only have the Access Runtime installed. How
do I determine what is missing in this case? as I can't open the full access?

Gerry

"Klatuu" wrote:

It is more likely some of the computers do not have some necessary references
set. Open the VBA editor on a machine where it all works and look at Tools
- References. Record all the references that are checked. The do the same
on a machine where it does not work. You will likely find there are some not
checked or could be marked as "missing". If one is not checked, check it.
If it says Missing, try to locate the file it references. If it can't be
found, it needs to be installed.

I have seen instances in a corporate environment where a consistent install
was not done and some files were missing. In this case, it is best to
reinstall Access.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

I have an access program that is packaged and distributed on a network in my
office. The program runs great on some machines and on others it doesn't.
I get a message "Function is not available in expressions in Queries". I am
guessing that maybe this is something to do with security but I can not
figure it out.
The packaged product includes the Access Runtime.
Can somebody make any suggestions?

  #7  
Old July 15th, 2009, 08:15 PM posted to microsoft.public.access.tablesdbdesign
Gerry
external usenet poster
 
Posts: 112
Default Error at Runtime (Function not available in querie expressions

As far as I know, the compile was clean. There was nothing that would
indicate otherwise. What would be the ways to know if the compile was not
clean?

Thanks much!

"Klatuu" wrote:

Very strange. I have no idea what would cause one function that lives with
other functions to fail in runtime.
Did you get a clean compile before you deployed the application? You should
always be sure of that.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

It looks like it is mostly the Mid function that is failing.

Gerry

"Klatuu" wrote:

What commands are failing? It may be you are doing something that is not
allowed in RunTime. I don't have a list of those, but there are some.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

Thanks Klatuu,
This happens on computers that only have the Access Runtime installed. How
do I determine what is missing in this case? as I can't open the full access?

Gerry

"Klatuu" wrote:

It is more likely some of the computers do not have some necessary references
set. Open the VBA editor on a machine where it all works and look at Tools
- References. Record all the references that are checked. The do the same
on a machine where it does not work. You will likely find there are some not
checked or could be marked as "missing". If one is not checked, check it.
If it says Missing, try to locate the file it references. If it can't be
found, it needs to be installed.

I have seen instances in a corporate environment where a consistent install
was not done and some files were missing. In this case, it is best to
reinstall Access.
--
Dave Hargis, Microsoft Access MVP


"Gerry" wrote:

I have an access program that is packaged and distributed on a network in my
office. The program runs great on some machines and on others it doesn't.
I get a message "Function is not available in expressions in Queries". I am
guessing that maybe this is something to do with security but I can not
figure it out.
The packaged product includes the Access Runtime.
Can somebody make any suggestions?

 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


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


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.