speakers_86
Registered User.
- Local time
- Yesterday, 19:44
- Joined
- May 17, 2007
- Messages
- 1,919
Are they different than previoius versions? Even in mdb? I ask this because I was recently troubleshooting what I thought was corruption, though it turned out not to be. I recreated an AutoExec in 2010, and it worked fine. When I moved to a different computer, it failed. I opened it in design view, and there were lines added with text that literally said something about it being created in a newer version of access. What seemed to be the most messed up is an if statement that tested if the db is trusted. Instead of my if statement, it was replaced with something like : [LocalVars]. and some other stuff I certainly didn't type.
I've recreated the macro in a blank db in 2010, and it's attached. Could someone in an older Access version take a look.
If this is the case could someone possibly fix the macro inside their older version of Access for me?
Here is the pseudo code for the macro.
I've recreated the macro in a blank db in 2010, and it's attached. Could someone in an older Access version take a look.
If this is the case could someone possibly fix the macro inside their older version of Access for me?
Here is the pseudo code for the macro.
Code:
if currentproject.istrusted=false then
openform Aph_frmEnableContent
else
run code LoadAppRibbonInGui
openform Aph_frmSettingsLocal ,,,,Hidden
end if