I agree. Help us to help you
If its your app, it may be you have modified my original code or not included all of it.
If this is from my own example app, please state the version number and the form name.
Or if its from the SaturdayBigBook app by the OP of this thread, you need to tell us
Control the Application Interface
This is the information from the link you provided for the download below. Hope, this helps. Thank you.
Version 3.44 Updated 14/01/2020
This example shows how the Access application interface can be controlled in various ways
Some of these methods can be used to help make a database more secure.
The database is opened with a form 'floating independently' on the desktop i.e. with the access application window hidden
Buttons on the form can be used to:
• drag a borderless form to a new position
-
-
show / hide entire Access application window
-
-
show / hide navigation pane
-
-
show / hide ribbon
-
-
show / hide taskbar
-
-
maximise the form to fill the entire screen (no title bar & no taskbar) - this only works for a popup form
-
-
open another form with a related report. This shows how the print preview ribbon can be displayed whilst the report is open & hidden when it is closed
-
-
open / close the Visual Basic Editor (VBE)
-
Although it is highly unlikely that any single application would need to use all of these features, this is designed to show that all items can be toggled on / off independently without problems.
All code has been fully tested in Access 2010 & 2016 (32-bit & 64-bit) and has been widely used in various production databases for several years.
The code used can be found in the modules:
-
-
modDatabaseWindow / modNavPaneTaskbar / modRibbon
-
Some of the code is widely known e.g. hide navigation pane / ribbon.
Other parts are written by myself or other authors. Where appropriate, those authors have been acknowledged.
This example database also includes:
-
-
code to resize forms for any screen size & resolution in module modResize
-
-
additional functions in module modDesignFeatures
-
If you wish to use any of the code in your own projects, just copy the relevant module code including all author information as supplied
The VBA reference Visual Basic for Extensibility is required for certain additional functions listed in the module modDesignFeatures
e.g. CloseAllVBEWindows and for getting the procedure names in error handling code.
It can be omitted if you don't wish to use either of these
UPDATES:
v2.0 09/05/2018 - added code to shows ways of running a query with the application interface hidden
v3.0 02/01/2019 - added code to open a report with the application interface hidden
v3.2 13/02/2019 - fixed an issue in 64-bit Access
v3.3 04/04/2019 - added code to allow form to be dragged using mouse down event
v3.41 19/07/2019 - modified code to prevent application window being restored after clicking on taskbar icon
v3.44 14/08/2019 - various bug fixes related to code in previous update
v3.46 14/01/2020 - added additional methods of handling reports when application window is hidden
Click to download:
SetWindows v3.46 (zipped - approx 2.0 MB)