Hi all
I am using Dutch versions of MSAccess and I use code like:
DoCmd.ShowToolb ar "Menubalk", acToolbarNo
DoCmd.ShowToolb ar "Formulierweerg ave", acToolbarNo
Last week when a sysadmin loaded the app on his laptop, the application errored on these lines.
==He was using an English/American version of Access.
Adapting the code to the following works (also in my Dutch version):
DoCmd.ShowToolb ar "Menu bar", acToolbarNo
DoCmd.ShowToolb ar "Form view", acToolbarNo
I know that to avoid this problem it is best to *not* use a localized version but...
Is there a way to use constants instead of the 'localised' name ? If so, how to find the constants ??
Another way to avoid this problem ??
Arno R
I am using Dutch versions of MSAccess and I use code like:
DoCmd.ShowToolb ar "Menubalk", acToolbarNo
DoCmd.ShowToolb ar "Formulierweerg ave", acToolbarNo
Last week when a sysadmin loaded the app on his laptop, the application errored on these lines.
==He was using an English/American version of Access.
Adapting the code to the following works (also in my Dutch version):
DoCmd.ShowToolb ar "Menu bar", acToolbarNo
DoCmd.ShowToolb ar "Form view", acToolbarNo
I know that to avoid this problem it is best to *not* use a localized version but...
Is there a way to use constants instead of the 'localised' name ? If so, how to find the constants ??
Another way to avoid this problem ??
Arno R
Comment