Just to save user to open design modeWhy?
Supply an accde file. That is what I used to do, despite my users not being inquisitive.Just to save user to open design mode
Don't think they can get to Design View in an ACCDE, normally. What's the secret?they can still get into design view on an .accde, just not to code.
No secret. Just open the db using the full version of Access holding down the shift key. they can't change anything compiled so no reports, forms, modules. But they can change tables, queries, and macros and do damage that way.Don't think they can get to Design View in an ACCDE, normally. What's the secret?
Ah, okay, my bad. I was going by the topic of this thread, which was preventing the user from going to the design view of the Form, as the title says. So, I also mistakenly thought you were just addressing that. Sorry!No secret. Just open the db using the full version of Access holding down the shift key. they can't change anything compiled so no reports, forms, modules. But they can change tables, queries, and macros and do damage that way.
What are you doing to prevent the user from pressing F11 to open the navigation pane?Hi
I am looking to hide or unhide through a command button that when i hit command button hide so the right click design mode must be disabled and same enabled after pressing another butoon with name enable
No secret. Just open the db using the full version of Access holding down the shift key. they can't change anything compiled so no reports, forms, modules. But they can change tables, queries, and macros and do damage that way.
Sub DisableNavPaneDesignView()
With CommandBars("Navigation Pane query or macro Pop-up")
.Controls(3).Enabled = False
End With
With CommandBars("Navigation Pane List Pop-up")
.Controls(2).Enabled = False
End With
End Sub
so the code is dangerous.Unless reversed, the changes are permanent and apply to all other databases
That would be me.so the code is dangerous.
if you forgot you have this code and run it on autoexec macro and totally forgotten about it, you'll have a hard time figuring out why you can't edit such objects.