I’ve just created my first ACCDE file. However, when I open it, I can still see the navigation pane and can open tables and go into their design view and change field sizes. Isn’t ACCDE supposed to prevent these actions?
in most systems, users can get at THEIR data (it is their data, after all)
eg commercial systems expose all this via ODBC links. you can open tables directly with these, and make changes to data in tables. you just don't because you know it is dangerous to do.
letting users see their data is not the same thing as losing security and compromising the database.
I don't use anything after 2003 unless I have to but I think this works. There could be a problem that the F11 key will bring the Nav Pane back. It so you will have to disable the Function Keys.
Code:
' I think this hides the Nav Pane in 2007
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide
What is your intention. How secure do you want this Database. Is it just to keep honest people out? There is a limit as to how secure you can make an Access Database.