Public Sub Initiation()
'Create properties first
Dim prp As Object
With CurrentDb
Set prp = .CreateProperty("AppTitle", 10, "Initiation Of All Properties", True)
.Properties.Append prp
Set prp = .CreateProperty("StartupForm", 10, "StartUp", True)
.Properties.Append prp
Set prp = .CreateProperty("AllowBypassKey", 1, True, True)
.Properties.Append prp
Set prp = .CreateProperty("AllowBreakIntoCode", 1, True, True)
.Properties.Append prp
.Properties("AllowFullMenus") = True
.Properties("AllowShortcutMenus") = True
.Properties("StartupShowDBWindow") = True
.Properties("StartupShowStatusBar") = True
.Properties("AllowBuiltInToolbars") = True
.Properties("AllowToolbarChanges") = True
.Properties("AllowSpecialKeys") = True
Application.RefreshTitleBar
End With
Set prp = Nothing
End Sub