Free Lessons
Courses
Seminars
TechHelp
Fast Tips
Templates
Topic Index
Forum
ABCD
 
Home   Courses   Templates   Seminars   TechHelp   Forums   Help   Contact   Join   Order   Logon  
 
Home > TechHelp > Directory > Access > Hide Access 2 < Hide Access | ACCDT Template >
Hide Access 2
By Richard Rost   Richard Rost on LinkedIn Email Richard Rost   2 years ago

Customize Access: Conceal Database Interface, Part 2


 S  M  L  XL  FS  |  Slo  Reg  Fast  2x  |  Bookmark Join Now

In this Microsoft Access tutorial, I will show you how to professionally mask the Access interface to impress your clients with functionality while dispelling biases. From custom startup forms, shortcuts with unique icons, to splash screens, we tackle it all in a straightforward, actionable checklist. This tutorial is designed to elevate your database, making it look less like Access and more like a bespoke software solution. Stay tuned for how to streamline your applications aesthetic. This is Part 2 of 2.

Prerequisites

Links

Recommended Courses

Notes

CHECKLIST: Startup Form (Main Menu) Put DB in it's Own Folder Make a Shortcut to the DB with Custom Icon Set Application Title and Icon Turn Navigation Pane Off (File, Options, Current DB) Optional: Turn Full Menus, Shortcut Menus Off Database Spash Screen (BMP in DB Folder) Hide Ribbon and Status Bar (VBA Code on Startup) Make Sure ALL Errors are Handled Debug, Compile the Database Compact It Make an ACCDE File Install Access Runtime

Learn More

FREE Access Beginner Level 1
FREE Access Quick Start in 30 Minutes
Access Level 2 for just $1

Free Templates

TechHelp Free Templates
Blank Template
Contact Management
Order Entry & Invoicing
More Access Templates

Resources

Diamond Sponsors - Information on our Sponsors
Mailing List - Get emails when new videos released
Consulting - Need help with your database
Tip Jar - Your tips are graciously accepted
Merch Store - Get your swag here!

Questions?

Please feel free to post your questions or comments below or post them in the Forums.

KeywordsHide Access in Microsoft Access, Part 2

TechHelp Access, Custom startup forms, unique icons, splash screens, Access concealment, bespoke software aesthetics, VBA coding, hide ribbon interface, shift key Access trick, ACCDE encryption, disable right-click menus, remove navigation pane, interface customization, secure database, custom controls, form design, pop-up forms, minimize Access window, Access interface tricks.

 

 

 

Comments for Hide Access 2
 
Age Subject From
2 yearsMain menu in backgroundDaniel Walters
2 yearsHidden StartupKatherine Kelley
2 yearsPopup Opened in Design view ErSami Shamma
2 yearsBypass Opens in Background ErrSami Shamma
2 yearsMessage BoxesJeffrey Eckert
2 yearsHide Access 2 videoMichael Duncan

 

Start a NEW Conversation
 
Only students may post on this page. Click here for more information on how you can set up an account. If you are a student, please Log On first. Non-students may only post in the Visitor Forum.
 
Subscribe
Subscribe to Hide Access 2
Get notifications when this page is updated
 
Intro In this video, we continue the Hide Access series by showing how to further disguise your Microsoft Access database so it does not appear to be Access to the end user. You will learn how to hide the ribbon and toolbar using VBA, how to set up startup options, use the shift key to bypass startup, and compile your VBA code to check for syntax errors. We'll cover converting your database to an ACCDE file for added security, the importance of keeping backups, and tips on distributing your finished product using the Access runtime. Pop-up forms, minimizing the application window, and closing the database cleanly are also discussed. This is part 2.
Transcript Welcome back to my Hide Access series. This is part two of two, where I'm going to show you how to get rid of all the naysayers, all the Access haters, and make your database look like it's not Access, even though you should be Access and proud. But I get it.

Alright. So in yesterday's video, we hid lots of stuff. We hid the navigation pane. We hid the right-click menus. We hid most of the ribbon, but you still got this big red bar across the top here. Let's turn the ribbon, the toolbar, completely off. Now, in order to do that, we're going to need a little VBA. That's why I marked this a developer-level video. Now, if you've never done any VBA programming before, go watch this video first. It'll teach you everything you need to know in about 20 minutes. We're really only going to need one line of code today, but you got to know where to put it.

Alright, so when the database starts up, we need to run one line of code to hide this ribbon interface. Now, normally, we'd put that inside of our startup form, or in your autoexec macro if you want to. I prefer the startup form, but we can't right-click anymore because we've disabled the right-click menu. So we have to shut the database down, and then you're going to click on the shortcut. You're going to hold down the shift key now, let the mouse go completely. Hold down the shift key and then double click on the shortcut. That's going to bypass the startup.

Alright, now we'll open up this database with all of the stuff that we just turned off back on again. Now, you can disable that. You can make it so that shift bypass no longer works. I do cover that in my full security seminar. That's a lot more involved, a lot more VBA code, but the average user isn't going to know that. Unless they know Microsoft Access, they're not going to know to do that. And even so, we're going to be making an ACCDE file in a minute. It'll be encrypted, and even if they do get in here, they won't be able to change anything. So don't worry about that.

Alright, but now that we are in here, let's go into our main menu, right-click, design view. Let's open up its properties, go to events, and either Unload or On Open'either one. It doesn't really matter for this particular case. Go to the dot-dot-dot, open up the VBA code editor.

Alright, here I am in my form load event, and it's going to be DoCmd.ShowToolbar, and then in quotes, "Ribbon", comma, acToolbarNo. Okay? That's it. Save it. Throw in a debug compile. Always, this is on the checklist too, make sure you compile your database before you try distributing it. Make sure all the errors are out of it. Syntax errors.

Now, close the database, open it up again normally this time, double-click, and there you go, look at that. The toolbar up top is completely gone, and now, just looking at it, you cannot tell this is Microsoft Access. There's no right-click menu, there's no ribbon. This is the standard Windows menu, the navigation pane is gone, you change all your icons, change the splash screen, right? Unless someone is really an expert in Access, they're not going to know the fact that this is Access, right here.

You can change that, put your logo here, change this. I did all this for my screenshot for the title slide, but you've got all this covered in the blank database video and how to make a main menu if you want to get a kick out of it. Pause it and read this. This is pretty cool stuff.

But see, you can make it look like it's not Access. I forgot to change the form level one there, and someone might recognize that as an Access form icon. Oh, big deal. Most people won't know it. So we're pretty much there. We're getting there. Doesn't look like Access at all.

So we hid the ribbon. I got to hide the ribbon and status bar here because when I made this, I forgot that you can also turn off the status bar in the file options, but there's VBA code you can use to hide the status bar as well if you want to do that in code. Because you can turn it on and off, but just use the file options menu to turn the status bar off. That's fine.

Alright, I'm going to skip "Make sure all errors are handled" for now. Let's talk about debug compile the database'we just did that. You want to make sure you debug and compile the database because if you have any syntax errors in your code, so if it's typed in wrong, or it's referring to fields that don't exist, or undeclared variables, that's going to generate a runtime error and the compiler will catch that and you also will not be able to make an ACCDE file.

Yeah, it's a PowerPoint, leave me alone. You will not be able to make an ACCDE file if there are syntax errors in your code, so make sure you debug compile.

Now that brings me back to "Make sure all errors are handled," because the compiler will catch syntax errors, but it won't catch runtime errors. It won't catch errors in your code logic, for example.

Now, this is a pain because any time you want to go back in and make changes in the database, you've got to close it and do the shift, double-click trick that I showed you earlier. Now you can get back in.

And what I usually do is I usually do all that lockdown stuff after I make the ACCDE file. I put it in code in a button, but that's up to you. And that's, again, stuff I cover in the security seminar.

But let's just say real quickly, maybe in your customer form. And again, you want to go through and change the icons, either one at a time. You could change them for all the forms, or you want to do that thing where I change all the system icons for the database and the forms themselves. Otherwise, you'll see the little Access logo in here.

But what you want to do is, let's say you've got a field in here, and you're doing some math on it. I'll just change this button right here. Let's say the Contacts button. All right, let's say we're going to say dim x, and we're going to say x equals 100 divided by zero, and then message box x. You probably see where I'm going with this.

Right now, debug compile it. It looks fine. Nothing, there's no problem. If I come back in here now and I'm not going to close the database and open it back up with all the stuff locked down. I'm back, and we don't know that's a database, right? The customer form, contacts, boom! Database. Customer form, contacts, boom. See? You get the Microsoft Visual Basic division by zero error, and someone who knows Access will know that this is, you know, a VBA error. They'll know that this was probably built in Access.

So, if you want to hide that, make sure you've got debugging for any possible spot in your database where it can cause an error, all right? And if you don't give them an ACCDE file, they'll be able to do this and hit "Debug," and it will open up the VBA editor. This does not open up if you've got an ACCDE file or if they're running off the runtime edition.

So, I'm going to get rid of this. Goodbye. Save it. Close it. And we should be good.

As far as error handling goes, I talk about it in a lot more detail in this video. I spend some time covering the basics in Access Developer 2 and I spent a lot more time on it in Access Developer 15. We call it debugging level 2, where I cover all kinds of other stuff like watches, breakpoints, the immediate window, all that kind of stuff.

Alright, next up: make sure you compact and repair your database. Everyone should know how to do that. Alright, Database Tools, Compact and Repair'it's that simple. Again, I've got a whole separate video on it, go watch this to learn more.

Alright, next up, we're going to make an ACCDE file, an encrypted or execute only file depending on who you ask. And this is a version of your database that the user can't make any design changes to, okay? Again, got a whole separate video on this one. I'll put a link down below. Go watch this. This is a good one.

Now, for this one, I'm going to go into the database folder and I'm going to open up the original ACCDB file and I'm going to hold down shift and open that up. So it bypasses the startup. When you do that, it normally opens up behind the window you're in. So just be aware of that. Sometimes, like if this window is really big, right, you might be sitting here wondering where is the database. It's in the background. That's one of those glitches with Access. Sammy, you can put that on the list too. I don't know why that, he's keeping a list of all the things that we're going to suggest to Microsoft because I don't know why it opens up in the background, but it does.

And now we're going to go into File, Save As, make a CCD file, okay, RixDB.ACCDE, save it, hope that there's no errors. Okay, because if you got any compile errors, it's going to tell you, I can't make an ACCDE file. Right? You got to go and figure out why not. One of the troubleshooting things I recommend, by the way, if that happens and you can't find the error, if you do a debug compile and you can't find the error, just start removing objects one at a time. Right? Take out, start with forms, remove those, remove modules, remove reports, and eventually, you'll get to a point where you can make the ACCDE file and that's probably the culprit. There could be a bug in there or something's corrupted. So there are lots of other things to do.

Okay, but now you got this guy right there. That's the guy you want to now make the shortcut to. Alright, this goes to the actual database and you can come in here if you want to go to properties and just change the target right here to the ACCDE file, right? And then hit OK, and now you can use this and keep this for yourself. Don't ever get rid of this guy because you can't go backwards from that back to that. I mean, yes, there are companies out there that can reverse engineer it, but it's expensive and it's time-consuming and you don't want to have to go through that. So always make sure you keep a backup of your development ACCDB file.

Okay, but now if the user, let me close this, if the user does open this up, it's the ACCDE, it's locked down. And even if they do know that shift trick, I'm going to hold down shift and open it up. Okay, I'm in here. Yes, you can still see the tables, okay, but you can't come in here and go to design view and you can't see the design of any of your code. Right, right-click, design, it's just blocked out. All right, tables are not secured in Access at all. If you need your data to be secured, you need to use a database server like SQL Server. And yes, of course, I've got a course on that as well.

Alright, but now the user has a nice locked-down ACCDE file, and you can now give them this. Alright, the last thing on the checklist is to install the Access runtime. Now, obviously, if you're going to be installing it yourself, you can do it; no one's going to be the wiser. If your customer has to install it, well, they're going to see that, if the Access runtime. There's really no way around it, and they can also use the full version of Access if they have to. One of the nice things about the runtime is that they don't have to buy a copy of Office to use your database. The runtime is free. And again, of course, I've got a whole video on using the Access runtime, how to distribute your database for free using the Access runtime and there are some third-party package and distribution utilities out there. I haven't used any myself in probably 20 some years to be honest. I used to use InstallShield back in, like, the late '90s and early 2000s, but I haven't used it since then.

So, if you have an installer application that you recommend, let me know, post a comment down below in the comments because I've been looking for one. I've seen a couple out there, but I have no experience with them lately. But InstallShield used to work great because it would create distribution CDs for him over the CDs, uh... and you know that you just give to your customer it was all you know uh... completely uh... you could brand it with your own logo and um... anytime you made the database for a client, I just ran through the InstallShield caller and it made it seem to commit on the install and they had no idea it was using Access.

So, there are options out there, I don't know what they are today, I don't even know if InstallShield is still around. The people yeah, that looks like it from back in the day. This was great software back then, uh... looks like now it's been rebranded as Revenera. So if any of you guys have any experience with this, let me know, put a comment down below.

So, that's my entire checklist so far. I got a couple of other videos you can also use to give you some ideas for making like custom forms and stuff that makes your Access database not look like Access. I got this one on form design aesthetics where you can make your own custom controls and your own custom buttons and all kinds of cool stuff so it looks nothing like Access whatsoever. I'm not a graphic designer by the way. I just kind of threw these together in, like, Word and PowerPoint, but I mean, if you're good with that kind of stuff, you can make a lot better than that.

And I also did one on custom form background; stick a background behind it. If you want that old Windows 2000 look, they want to look like XP, you know, make it. Make your own custom form background. Make it look whatever you want it to look like. It'll not look like Access.

I'd also want to give a shout out to one of my moderators, Kevin Robertson. He came up with an idea. This is posted a couple of months back in my forums on the website. And what he's saying is you can use pop-up forms in your database, and you won't even see the Access window itself. It'll start up, and you'll just minimize it. So the Access window will be down in the taskbar, but all the user will see is going to be your pop-up form, like that. And here you can still see the Access logo, but I showed you how to change the logo so it'll look like your logo down there.

So to do this, what you'll do is we'll go to the original database. Now remember this opens up the ACCDE file now, so that's not even going to work. In fact, I'm going to get rid of it. There's no reason to keep that around. I'm going to just change this back to the DB. Properties, DB, DB. Okay.

So, open this guy up. Again, hold the Shift key down, open it up in developer mode. Come on. Here, little database. Okay, so what Kevin is saying to do is to take your objects, whatever objects you wanted the user to use, and make them pop-up. Right-click, Design View, go in here, and go Other, and set pop-up to Yes.

Now, I typically try not to use pop-up forms because they can sometimes unexpectedly show up in weird spots, and you have to kind of save it for like a standard monitor arrangement. Because if you've got multiple monitors they're going to go wherever you have them on your monitor. You might need to use code to move them around. I've got separate lessons on that too, but just be careful if you're using this.

So let's do the main menu. Let's do the customer form, Design View, pop-up, yes. Let's do the customer list form, Design View, pop-up, yes. And one more, let's do contacts.

And you'll have to do all of them in your database if you want them all to-- All right, pop-up, yes. So now those guys are pop-ups and then what we're going to do is in the main menu, we're going to minimize Access when it starts. So again, go into the main menu and see look at this, when you go into design view on pop-up menus that happens. Sammy, definitely put that on the list for the Access team. That's annoying, and that's been that way for years and years and years. Whenever you got a pop-up window, right, if you go to try to design it, boom, it shows up right up here in the corner, and that's annoying. Or hit that, kids. Then, that. Alright, you get it. Do that to get it back out. That's a cool fix, that anyway.

Alright, go back in here, go to that event, and go to the On Load that we have here. Okay, and that same spot where we're hiding the ribbon, we're going to say DoCmd.RunCommand, acCmdAppMinimize. That's going to minimize the application window, Access itself. All right, but your forms are pop-up forms, so they'll stay up. They're not going to minimize.

Okay, what you're also going to want to do is in the Form Close event for your main menu. You're going to want to shut the database down. Alright, so go to Form and find the Close event or Exit. Where's the close event? Where are you? Form Close--Right when they close this form, shut the database down. So DoCmd.Quit, and whatever, Save All is fine. Okay.

Alright. Debug compile'Make sure we don't have any errors. Close it. Close it. And there it is. Anyway, there we go. It's just the main menu. And yeah, you'll see the icons down on the bottom. There it is. There's the application window. But all they see is this. And you can click on stuff. If they do click on that, it will open up the application window behind it, but we've already hidden everything, so they'll just see this big empty screen. But now they can just work with the stuff, that's the customer form, right, contacts. Oh, what

TOPICS
Creating a seamless user experience in Access databases
Hiding the Access interface to deter naysayers
Using Visual Basic for Applications (VBA) to customize Access
Disabling the Access ribbon with VBA
Bypassing startup options using the shift key
Enabling and disabling shift bypass in Access
Compiling VBA code to eliminate syntax errors
Creating an ACCDE file (encrypted/execute only file)
Securing the database with ACCDE format
Converting an ACCDB file to an ACCDE file
Maintaining backups of the development database (ACCDB)
Limitations of design changes in ACCDE files
Using SQL Server for data security
Utilizing the Access runtime for distribution
Customizing the Access startup window and form properties
Managing pop-up forms in Access
Minimizing the Access application window with VBA
Shutting down the database with form close events
Quiz Q1. What purpose does using VBA serve in customizing an Access database?
A. It enables the creation of new data tables.
B. It allows the customization of the user interface.
C. It provides enhanced encryption for the database.
D. It automatically backs up the database periodically.

Q2. How can you access the properties of a startup form when the right-click feature is disabled?
A. Press Alt + Enter when the form is highlighted.
B. Re-enable the right-click feature temporarily.
C. Restart the database while holding the shift key.
D. Use the command line to open the form properties.

Q3. Why is it important to debug and compile your database before distribution?
A. To ensure the database can only be opened by the developer.
B. To optimize the database performance on all computers.
C. To prevent syntax errors and ensure the database can be converted to an ACCDE file.
D. To encrypt the database data and code for security purposes.

Q4. What does creating an ACCDE file accomplish?
A. It decodes and repairs any corrupt data.
B. It enhances the graphical interface of the database.
C. It helps in removing unnecessary tables to save space.
D. It creates a version where design changes cannot be made.

Q5. What should you always maintain even after creating an ACCDE file?
A. A copy of the runtime version of your database.
B. A backup of the original development ACCDB file.
C. An open connection to the SQL Server database.
D. The default Access form icons for reference.

Q6. Which statement is true regarding the security of tables in Access?
A. Tables are automatically encrypted in an ACCDE file.
B. Tables in Access cannot be secured, and for higher security, SQL Server should be used.
C. Tables are only visible to users with administrator privileges.
D. Tables can be password protected individually within Access.

Q7. What is one of the benefits of distributing an Access database with the runtime version?
A. Users are able to design and create new tables.
B. It allows users to view and debug VBA code.
C. The database can be used without a full version of Access or Office.
D. The runtime version provides additional graphic design features.

Q8. How can you minimize the Access application window when a database starts up?
A. Set the 'Pop-up' property of the form to 'Yes'.
B. Use the VBA command 'DoCmd.Minimize'.
C. Add the VBA command 'DoCmd.RunCommand, acCmdAppMinimize' in the On Load event.
D. Adjust the Windows taskbar settings to auto-hide Access.

Q9. What should be done in the Form Close event to ensure the database shuts down properly?
A. Set 'Modal' to 'No' for all forms.
B. Insert the VBA command 'DoCmd.Close'.
C. Execute the VBA command 'DoCmd.OpenForm'.
D. Employ the VBA command 'DoCmd.Quit'.

Q10. What is a sign of an unhandled runtime error during the use of the database?
A. The database file size suddenly increases.
B. An irrelevant form opens up unexpectedly.
C. A division by zero error popup appears from Microsoft Visual Basic.
D. The ACCDE file turns back into an ACCDB file.

Answers: 1-B; 2-C; 3-C; 4-D; 5-B; 6-B; 7-C; 8-C; 9-D; 10-C;

DISCLAIMER: Quiz questions are AI generated. If you find any that are wrong, don't make sense, or aren't related to the video topic at hand, then please post a comment and let me know. Thanks.
Summary Today's TechHelp tutorial from Access Learning Zone covers how to give your Access database a truly professional, seamless look. This lesson is the second part in my Hide Access series. My goal here is to help you transform your database so thoroughly that most users will never realize it is running on Microsoft Access. While I always encourage you to be Access and proud, I realize that sometimes clients or colleagues may doubt Access as a platform, or you simply want your database to look and feel unique.

In the first part of this series, I walked through hiding several of the built-in Access elements. That included minimizing the navigation pane, disabling right-click menus, and hiding most of the ribbon interface. However, you may have noticed that there was still a large red ribbon at the top. The next step is to remove this toolbar entirely, for which you will need to use a small amount of VBA code. This part of the tutorial is developer-level content, so if you are new to VBA, I recommend checking out my introductory VBA video for a solid foundation.

To hide the ribbon when the database opens, you need to run a simple command. Typically, you would place this code in the startup form's event—either the On Load or On Open event works fine. Alternatively, you could use an autoexec macro, but I find the startup form more straightforward.

Since right-clicking and design options have been disabled previously, you'll have to open the database with certain features temporarily re-enabled. The trick is to shut down the database, then hold down the Shift key while opening it from its shortcut. Holding Shift bypasses the startup routines so you can get back into the backstage areas as a developer. Keep in mind that you can disable this Shift bypass with VBA for extra security, which I discuss in detail in my full security seminar. Most users will not know about this Shift feature, but even if they do, converting your file to ACCDE format later will protect your code from modification.

After re-entering your database with restrictions lifted, open your main menu form in design view. Access the event settings and add the VBA statement to hide the ribbon—just a single, straightforward command is necessary. Always remember to debug and compile your database before distributing it. This ensures there are no syntax or logic errors and makes creating an ACCDE file possible.

Once you've added the code and tested it, close and reopen the database normally. You'll see that the ribbon is gone, making Access's origins harder to spot. At this stage, you can further personalize your database by changing icons and splash screens. Even if a default Access icon remains in a minor spot, most users won't notice.

You can also turn off the status bar through the file options menu, or by using VBA if you prefer dynamic control. Disabling the status bar is another step toward creating a clean user experience.

Debugging, error handling, and compiling your code are indispensable steps. Compiling helps catch syntax problems, such as mistyped commands or references to undefined fields or variables. It is critical to resolve these errors before attempting to create an ACCDE file, as syntax issues will stop the process. Note that runtime or logical errors won't be caught during compile time, so comprehensive error handling in your code is a must. If your application presents an error dialog to a user and the file is not in ACCDE format, users might be able to open the VBA editor by clicking Debug. ACCDE format or the Access runtime prevents this risk.

After your code is clean, compact and repair your database to ensure optimal performance and stability. Then you can convert your ACCDB file to an ACCDE. An ACCDE is a locked-down version of your application where users cannot change forms, reports, or modules. To save as ACCDE, open your database while holding Shift (to bypass restrictions), then use the Save As command.

If you encounter issues while creating the ACCDE, debug and compile to uncover any lingering errors. If problems persist, a useful strategy is to temporarily remove objects, like forms or modules, one at a time until you identify what is causing trouble—sometimes there could be corruption or a difficult-to-find bug.

Once you have your ACCDE, keep your ACCDB development file safe. There is no easy way to revert an ACCDE to the original ACCDB, so always have solid backups. Give the locked-down ACCDE to your users and point their shortcuts to that file.

While ACCDE prevents users from viewing or modifying your code and forms, it does not secure your data tables. If you need genuine database security for your data, use a server platform like SQL Server—I have a full course on this topic for those interested.

For deployment, you can use the free Access runtime so your users do not need a full Office license to run your application. I have a video devoted to distributing databases with the Access runtime, as well as discussing third-party packaging software. Historically, tools like InstallShield were helpful for creating branded installers, though my experience with current solutions is limited. If you have recommendations on installer software, feel free to share your insights in the comments.

To further disguise Access, you can customize your form designs. I have additional videos on building custom controls and stylish backgrounds so your forms no longer resemble standard Access interfaces. Even without much graphic design skill, with a bit of effort in Word or PowerPoint, you can make dramatic improvements.

Another trick, suggested by moderator Kevin Robertson on our forums, involves using pop-up forms only. By setting forms as pop-ups and minimizing the Access application window at startup through VBA, users will interact only with your tailored forms instead of the main Access window. You control this through form properties and an event that minimizes the application window. Just keep in mind that pop-up forms can sometimes appear in unexpected locations, especially on systems with multiple monitors. You may need extra VBA to control their position.

To complete the experience, when your main menu or start-up form closes, you can program it to shut down the database using another VBA command in the form's close event.

With all these strategies, you can create an Access application that is both secure and professional in appearance. Your checklist should include hiding navigation elements, removing the ribbon and status bar, compiling and repairing your database, distributing an ACCDE, and possibly using installer software or the Access runtime for seamless delivery.

You can find a complete video tutorial with step-by-step instructions on everything discussed here on my website at the link below. Live long and prosper, my friends.
Topic List Hiding the Access ribbon with VBA
Bypassing startup options with the shift key
Setting form On Load event to run VBA code
Using DoCmd.ShowToolbar to hide the ribbon
Compiling VBA code to check for syntax errors
Disabling right-click menus in Access
Turning off the status bar via File Options
Creating an ACCDE file from ACCDB
Troubleshooting ACCDE creation errors
Preventing users from editing design in ACCDE
Distributing Access databases with the runtime
Setting form pop-up property to Yes
Minimizing the Access window with VBA
Using DoCmd.RunCommand acCmdAppMinimize
Automatically closing the database via DoCmd.Quit in Form Close event
Customizing database appearance by changing icons and splash screen
 
 
 

The following is a paid advertisement
Computer Learning Zone is not responsible for any content shown or offers made by these ads.
 

Learn
 
Access - index
Excel - index
Word - index
Windows - index
PowerPoint - index
Photoshop - index
Visual Basic - index
ASP - index
Seminars
More...
Customers
 
Login
My Account
My Courses
Lost Password
Memberships
Student Databases
Change Email
Info
 
Latest News
New Releases
User Forums
Topic Glossary
Tips & Tricks
Search The Site
Code Vault
Collapse Menus
Help
 
Customer Support
Web Site Tour
FAQs
TechHelp
Consulting Services
About
 
Background
Testimonials
Jobs
Affiliate Program
Richard Rost
Free Lessons
Mailing List
PCResale.NET
Order
 
Video Tutorials
Handbooks
Memberships
Learning Connection
Idiot's Guide to Excel
Volume Discounts
Payment Info
Shipping
Terms of Sale
Contact
 
Contact Info
Support Policy
Mailing Address
Phone Number
Fax Number
Course Survey
Email Richard
[email protected]
Blog RSS Feed    YouTube Channel

LinkedIn
Copyright 2026 by Computer Learning Zone, Amicron, and Richard Rost. All Rights Reserved. Current Time: 1/23/2026 7:21:44 AM. PLT: 1s
Keywords: TechHelp Access, Custom startup forms, unique icons, splash screens, Access concealment, bespoke software aesthetics, VBA coding, hide ribbon interface, shift key Access trick, ACCDE encryption, disable right-click menus, remove navigation pane, interface  PermaLink  Hide Access in Microsoft Access, Part 2