I'm running Windows NT and using Access 7.0. Database content is highly sensitive and access is tightly secured (password protected, SHIFT key disabled, user can only see information via appropriate forms (which may open reports or queries from selected lists.) Bottom line is that I don't want my user "peeling the onion"..... and some are curious enough to try about anything.
One thing I'd like to be able to remove too is the functionality of the F keys [specifically... the global F-Keys like F1 (help), F7 (spell check), F12 (Save As), etc.]. The F12 concern is mainly that I don't want them to effect the size of the front-end .mdb file.
Is there a controllable way to do this using VBA similar to the way the SHIFT key can be enabled/disabled with:
(or True)
One thing I'd like to be able to remove too is the functionality of the F keys [specifically... the global F-Keys like F1 (help), F7 (spell check), F12 (Save As), etc.]. The F12 concern is mainly that I don't want them to effect the size of the front-end .mdb file.
Is there a controllable way to do this using VBA similar to the way the SHIFT key can be enabled/disabled with:
Code:
db.Properties("AllowByPassKey") = False