Is there a way, using code, to show the menus.
I have my own login security setup and have used the Tools>Startup> uncheck allow menus to hide the database window and other menus. (ps. I know shift bypass kills all of this - damn!).
I have two buttons with the code below to show/hide the database window and that part works fine.
'To show the database window
DoCmd.SelectObject acTable, , True
'To Hide the database window
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide
I just want to add some more code to be able to show and hide the menus as well.
I have my own login security setup and have used the Tools>Startup> uncheck allow menus to hide the database window and other menus. (ps. I know shift bypass kills all of this - damn!).
I have two buttons with the code below to show/hide the database window and that part works fine.
'To show the database window
DoCmd.SelectObject acTable, , True
'To Hide the database window
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide
I just want to add some more code to be able to show and hide the menus as well.