X
XP
In Office 2003, I'm trying to code a back door using an AutoKeys macro; I
want this program to switch on certain components disabled through the
StartUp dialog box. It seems to be working, but to use it, I have to open the
FE, run the program, close the FE and re-open again before my commands "take".
Is there a way to make these commands function on the DB without having to
reopen it? OR, is that just the way it works...?
An example of my code follows:
CurrentDb.Properties("StartUpShowDBWindow").Value = True
CurrentDb.Properties("StartupShowStatusbar").Value = True
CurrentDb.Properties("AllowBuiltInToolbars").Value = True
CurrentDb.Properties("AllowSpecialKeys").Value = True
Thanks for your input.
want this program to switch on certain components disabled through the
StartUp dialog box. It seems to be working, but to use it, I have to open the
FE, run the program, close the FE and re-open again before my commands "take".
Is there a way to make these commands function on the DB without having to
reopen it? OR, is that just the way it works...?
An example of my code follows:
CurrentDb.Properties("StartUpShowDBWindow").Value = True
CurrentDb.Properties("StartupShowStatusbar").Value = True
CurrentDb.Properties("AllowBuiltInToolbars").Value = True
CurrentDb.Properties("AllowSpecialKeys").Value = True
Thanks for your input.