|
Question : How To Disable CTRL-COMMA Shortcut ?
|
|
Hi Experts,
Using Access 2002, have locked down the database with the following code... However when pressing CTRL-COMMA the user can still switch to design view of a form and then back again with CTRL-FULLSTOP how can this be disabled ?
SetDbProp "StartupShowDBWindow", dbBoolean, devOpen, False, True SetDbProp "StartUpShowStatusBar", dbBoolean, False, False, True SetDbProp "StartUpShowDBWindow", dbBoolean, devOpen, False, True SetDbProp "AllowBuiltinToolbars", dbBoolean, devOpen, False, True SetDbProp "AllowFullMenus", dbBoolean, devOpen, False, True SetDbProp "AllowBreakIntoCode", dbBoolean, devOpen, False, True SetDbProp "AllowSpecialKeys", dbBoolean, devOpen, False, True SetDbProp "AllowBypassKey", dbBoolean, devOpen, False, True SetDbProp "AllowShortcutMenus", dbBoolean, devOpen, True, True
|
|
Answer : How To Disable CTRL-COMMA Shortcut ?
|
|
why not distribute as a .mde file?
|
|
|
|