I have the following startup code to hide toolbars etc and set the db properties but when i hold the shift key down the "menu Bar" does not show and i have to enable it via code again.
Can some one help me with what i am doing wrong please.
help apreciated
Neemi
Can some one help me with what i am doing wrong please.
Code:
ChangeProperty "StartupShowDBWindow", dbBoolean, False
ChangeProperty "AppTitle", dbText, DLookup("[SystemTitle]", "tblSystemDetails") & " - Version " & DLookup("[Version]", "tblSystemDetails")
'ChangeProperty "AppIcon", dbText, Application.CurrentProject.Path & "\" & "RAT.ICO"
ChangeProperty "StartupForm", dbText, "About"
'ChangeProperty "UseAppIconForFrmRpt", dbBoolean, True
With Application
.SetOption "Confirm Action Queries", False
.SetOption "Confirm Record changes", False
.CommandBars("Menu bar").Enabled = False
.SetOption "Show Status Bar", False
.CommandBars("RATTool").Enabled = True
End With
help apreciated
Neemi