PODCAST · technology
Computer Learning Zone
by Richard Rost
Richard Rost is a Microsoft MVP and President/CEO of Computer Learning Zone. He creates video tutorials to teach you how to use your computer, specializing in Microsoft Access.
-
68
Calculating Overlapping Date Ranges in Microsoft Access
Need to know how many calendar days two date ranges have in common? This episode covers a simple, reusable VBA approach for Microsoft Access that works whether ranges partially overlap, one contains the other, or they do not overlap at all.The key is to identify the later start date and earlier end date, then handle the important no-overlap check before calculating the result. Richard also discusses the often-missed difference between inclusive dates and date ranges where the ending day is not counted.Along the way, hear about a real copy-and-paste bug involving the comparison operator, why date math can be simpler than DateDiff for day counts, and practical uses for reservations, rentals, payroll periods, warranties, subscriptions, and utility bill splitting.
-
67
How to Check Whether Your Microsoft Access Back End Is Still in Use
Before compacting a shared Microsoft Access back end, restoring a backup, or changing table designs, it helps to know whether anyone is still connected. A small Access lock file can provide a quick warning that the database may be in use.Richard Rost explains what LACCDB and LDB lock files do, why they are useful in split databases, and why their presence is not always proof that someone is actively working. A crash, lost network connection, or powered-off workstation can leave behind a stale lock file.You'll also hear about a simple VBA approach for checking whether a back-end lock file exists, along with an important caveat for unbound startup forms that may not touch linked tables immediately. It is a practical way to avoid turning routine maintenance into a very interesting Tuesday.
-
66
Microsoft Access Help: Finding Reliable Answers, Community Support, and Expert Help
Getting stuck in Microsoft Access can lead to a flood of conflicting search results, outdated advice, and more questions than answers. This episode looks at where to find dependable help, from Microsoft's documentation and built-in F1 support to active Access forums, technical communities, news sites, and professional consultants.Richard Rost explains how to match the kind of problem you have with the right source of support. A simple feature question, a tricky SQL or VBA error, a database design issue, and a large business project may each call for a different kind of help.You'll also hear practical advice for asking better questions, including sharing the goal, exact error message, relevant code, screenshots without private data, and what you have already tried. Better questions lead to faster answers and make life easier for the volunteers helping you.Finally, the episode covers when training, tutoring, or hiring an Access consultant makes sense, plus why learning the language of databases can make you a more confident user and a better customer.
-
65
Pulling Data in Microsoft Access: Queries, Imports, and Copies
"What does it mean to pull data in Access?" It sounds simple, but the answer depends entirely on where the data lives, where it needs to go, and whether you want a live view or a permanent copy.This episode clears up the most common meanings behind the phrase. Learn when to use a relational query to display customer details alongside orders, when copying values is appropriate for historical records such as shipping addresses and prices, and when imports, linked tables, staging tables, or VBA may be the better fit.We also cover single-value lookups, retrieving sets of records with select queries, exporting data to other programs, and why it matters which application is doing the "pulling." The key is asking the right questions before choosing an Access tool.
-
64
Microsoft Access Forms and Queries: Why Your Data Is Read-Only
Can you see your records in Microsoft Access but suddenly cannot edit them? A form that beeps, a locked field, or a query that opens read-only can be frustrating, especially when the database worked fine yesterday.This episode explains why the form is often just the messenger. The real issue may be the underlying table, a linked data source, network permissions, record locks, form properties, control settings, or a query Access cannot safely update.We also look at common troublemakers like totals queries, DISTINCT, calculated fields, joins, missing primary keys, outer joins, and overly complicated multi-table recordsets. Plus, a few developer-level causes involving VBA, SQL Server permissions, trusted locations, and the occasional Access bad hair day.The key is to isolate the problem instead of staring at a giant query and hoping for inspiration. Start simple, test the table, query, and form independently, then find the feature that turns editable data into a read-only recordset.
-
63
Understanding Microsoft Access VBA Class Modules
Class modules can seem intimidating in Microsoft Access VBA, especially if most of your code lives in standard modules and form events. This episode explains what class modules actually are, how they differ from tables, forms, reports, and standard modules, and why they are not something every Access developer needs to use.Learn the basic object-oriented ideas behind classes, including blueprints, objects, instances, properties, methods, encapsulation, and the difference between Property Get, Property Let, and Property Set. A simple employee class example shows how separate objects can each retain their own data and behavior.We also cover when class modules can be useful, such as modeling customers, employees, invoices, shopping carts, or reusable form behavior. Just as importantly, we discuss when a plain standard module is the clearer and better choice. Classes are a useful advanced tool, but they do not replace good relational table design or make a database better simply because they sound fancy.
-
62
Microsoft Access Basics Quiz: Tables, Orders, Forms, and Reports
Test your Microsoft Access fundamentals with five beginner-friendly questions covering the building blocks of a well-designed database.Learn why tables store data, why customer orders belong in a separate orders table, and why splitting first and last names can make sorting, filtering, and personalized letters much easier. The quiz also clears up the practical difference between forms for on-screen data entry and reports for printed output like invoices and labels.A quick, useful refresher for new Access users who want to avoid common database design mistakes.
-
61
Windows Two-Digit Year Cutoff: Why Dates Become 2040 and How to Change It
Why does entering a date like 11/40 in Excel or Microsoft Access turn into 2040 instead of 1940? The answer is Windows' two-digit year cutoff, a system setting that decides which century a two-digit year belongs to.This episode explains why the cutoff exists, why Excel and Access can interpret dates the same way, and why the default behavior may be a problem for medical offices, genealogy work, museums, cemetery records, and other historical data entry.Learn when changing the Windows cutoff may make sense, why relying on two-digit years can create inconsistent data between computers, and why entering a full four-digit year in ISO format is still the safest habit.
-
60
Going Online: Migrating Microsoft Access Databases to SQL Server
Ready to take your Microsoft Access database from your office desktop to a fully online solution? In this episode, we explore one of the most practical challenges for Access users: connecting your Access data to SQL Server and making it accessible from anywhere with an internet connection. Your host, Richard Rost from Access Learning Zone, walks you through the whole process, highlighting the tools you will need, common pitfalls, and tips for smooth sailing.You will learn what SQL Server Management Studio actually does, why ODBC connections matter, and how to think about security and performance as you transition. With clear explanations, seasoned advice, and some honest opinions about Microsoft tools (like the Migration Assistant), this episode strips away the confusion and shows what actually matters along the way.Whether you are a business owner trying to enable remote work, an Access veteran ready to scale up, or just curious about bringing legacy databases into the cloud era, this episode is a friendly and realistic guide to making your move. Get insights into linking tables, optimizing for speed, and keeping your data secure as you bring Access and SQL Server together.
-
59
Microsoft Access Relational Database Quiz 2: Tables, Relationships, and Junction Tables
Put your Microsoft Access relational database knowledge to the test with five questions covering the building blocks of a well-designed database.This quiz explores how related tables work together, why a vehicle record should store a CustomerID instead of repeating customer details, and how one-to-many relationships handle customers with multiple orders or vehicles.It also covers the many-to-many relationship and the role of junction tables when both sides of a relationship can have multiple related records. A quick, practical review for Access users who want to avoid duplicate data and design cleaner databases.
-
58
Why Your Microsoft Access Database Is Read Only and How to Fix It
Have you ever opened your Microsoft Access database and found you suddenly cannot make changes because it is locked in read only mode? You are not alone. In this episode, Richard Rost from Access Learning Zone breaks down why this happens, what "read only" actually means in Access, and the most common (and easily overlooked) reasons this frustrating problem occurs.From simple slip-ups like accidentally opening your database in read only mode, to Windows security settings, network folder permissions, stale lock files, and the special nuances of ACCDE files, Richard highlights the practical issues you are most likely to face. You will also hear about sneaky culprits like file sync services and antivirus programs that can put your Access files into lockdown without you realizing.If you deal with Microsoft Access in your work or studies, understanding how to get your database back into normal working mode is a must. Listen in for a clear, conversational breakdown that will leave you feeling confident the next time Access locks you out. Stay tuned for some laughs, real-world anecdotes, and expert advice to avoid future headaches.
-
57
Getting Started With Microsoft Access: Key Objects and Common Questions
If you are new to Microsoft Access, this episode is a fun and informative way to brush up on the basics. Join us for a lighthearted quiz covering essential Access terms, like which object actually stores your data and what types of objects are used for different tasks in the database. Whether you are confused by terms like table, field, and record or just want to make sure you are using the right tool for printing reports, this episode has you covered.We cover common beginner pitfalls and help you understand not just what these objects are called, but why it matters. By the end, you will have a clearer sense of how Access organizes information and what makes it a relational database system. Perfect for first-time learners or anyone looking for a quick knowledge refresher.Keep track of your score or just play along and see how many you get right. And remember, mastering the basics is where all Access pros begin.
-
56
How to Fix the Automation Error Catastrophic Failure in Microsoft Access
Ever opened your Access database to see the dreaded "Automation Error Catastrophic Failure" and wondered if all is lost? You are not alone. On this episode, we demystify one of the most alarming errors in the Microsoft Access world and explain why - despite its over-the-top name - it is rarely as disastrous as it sounds.Join instructor Richard Rost as he breaks down what typically causes this error, from corrupted compiled VBA code to missing references or problematic ActiveX controls. Learn why Access sometimes throws its hands up after a crash or update, and discover practical, real-world troubleshooting advice to get your database back on its feet.You will also hear about the importance of backups, how to use decompile and compact and repair features, and ways to avoid common pitfalls that trip up Access users. Whether you are a database pro or you just inherited a mission-critical Access file, this episode offers the clarity and confidence you need to tackle catastrophic failure - and keep your database running smoothly.
-
55
Getting Your Microsoft Access Data Online with SQL Server and WinHost
Thinking about moving your Microsoft Access database online so it is easier to share with remote employees or access from anywhere? In this episode, Richard Rost from Access Learning Zone guides you through everything you need to know to set up a SQL Server online hosting account with WinHost. Learn why hosting your database in the cloud is more accessible and affordable than ever, and get a behind-the-scenes look at choosing a hosting provider, selecting the right plan, handling domains, and making sense of the jargon.Richard shares his hands-on experience, plus practical tips about domain setup, SSL certificates for security, getting your connection strings right, and pitfalls to avoid. If you have ever been frustrated with unreliable web hosts or worried about setting up online infrastructure, this conversation will set your mind at ease and get you ready to connect Access to a SQL Server in no time.Whether you are setting up a new company database or just want to make your tools more modern and mobile, this episode is the perfect place to start. Grab your notepad and let Richard break it all down in plain English with a few nerdy stories along the way.
-
54
Tracking How Long an Access Form Was Open Without Timers
Ever wished you could see how much time you spend working in different parts of your Microsoft Access database, but hate the idea of a constant ticking timer? In this episode, host Richard Rost from Access Learning Zone tackles a practical challenge: measuring the time a form stays open in Access, all without using a distracting or potentially problematic timer event.Learn how to use simple VBA and TempVars to log when a form opens, calculate the elapsed time once it closes, and display the results in a user-friendly way. Richard also explains why TempVars are a smart, reliable choice for this job, and shares tips for making your message display more polished for your users. Whether you are curious about your own productivity or want to spot bottlenecks in your workflow, this technique can help you monitor and improve your everyday Access tasks.Along the way, enjoy practical insights, relatable examples, and some candid developer humor, as you pick up ideas that can make your Access databases more informative and user friendly - without any heavy-handed monitoring. If you want to dig deeper, hear about building a reusable framework to track multiple forms and log results for reporting.
-
53
Access Databases Online with SQL Server: Work Remotely and Collaborate Anywhere
Wish you could access your Microsoft Access database from anywhere, not just the office? In this episode, Richard Rost explains how to host your Access database online using SQL Server, making it easy for remote employees, travelers, and multi-location teams to work together seamlessly. You will hear about the pros and cons of moving your data online, essential tips for security, performance, and backups, and the real-world challenges when transitioning from a traditional Access backend.Richard also shares his personal experiences managing database servers, what goes wrong when you skip security, and why using an online SQL Server can actually make your data safer and more accessible. Whether you want to build an online web portal or simply connect multiple Access users over the internet, this episode is packed with practical advice for anyone looking to modernize their database workflow. No more being tied to one computer get your data online and work from anywhere!
-
52
Why Microsoft Access Never Came to Mac and What Mac Users Can Do
Ever wondered why Microsoft Access is missing from the suite of Office apps available for Mac? In this episode, we dive into the history and reasons behind Microsoft's decision to keep Access Windows-only. Learn about the technical challenges that make porting Access to macOS far more complicated than Word or Excel, from its reliance on Windows-specific technologies like the Jet database engine and VBA integration, to business considerations around market demand and established Mac alternatives like FileMaker Pro.We also cover the current best options for Mac users who need Access, including virtualization solutions like Parallels Desktop, VMware Fusion, and remote desktop access. If you work in a mixed Mac and Windows environment, or are just curious about where Microsoft is focusing its future database efforts, this conversation will help you understand why Access remains a Windows exclusive and what practical alternatives exist. Perfect for anyone working across platforms or considering their options for Access on a Mac.
-
51
Celebrating America at 250: Fun Facts, Reflections, and a Bit of Humor
Join Richard Rost from Computer Learning Zone as he marks America's 250th Independence Day with a blend of humor, thoughtful reflection, and quirky trivia. Discover the story behind the term "semi-quincentennial," find out why air conditioning and internet arguments are underappreciated American achievements, and laugh along as Richard shares tales of fireworks, anxious pups, and the perils of overzealous patriotism.This episode explores what makes Independence Day meaningful, highlights the freedoms at the heart of the United States, and challenges us to be considerate neighbors while celebrating. Whether you are a history buff, a lover of bad puns, or just want a new perspective on July 4th, this lighthearted yet sincere episode is for you.So grab your hot dogs, keep your pets calm, and tune in for a thoughtful and entertaining look at America's 250th birthday.
-
50
Bringing Microsoft Access Data to Mobile with Power Apps and SQL Server
Wish you could use your Microsoft Access data on your phone without overhauling your whole system? In this episode, Access instructor Richard Rost walks you through how to easily build a mobile-friendly front end for your existing Access database using Microsoft Power Apps and SQL Server.We talk about why moving your Access tables to SQL Server is the key to unlocking flexible, multi-platform access, and dive into practical options for working with your data remotely. Richard breaks down the differences between solutions like SharePoint, Dataverse, and SQL Server, and explains why SQL Server is his top pick for most Access users who want future-proof flexibility.If you have ever wanted to give your users secure mobile or web access to Access data without abandoning your trusty Access desktop front end, this episode is for you. Learn what Power Apps is good for, when it makes sense, licensing pitfalls to be aware of, and the mindset shifts for Access developers stepping into the world of low-code app building.Ideal for Access power users, small business IT, and anyone curious about bringing legacy desktop data to the modern mobile era.
-
49
Keeping Microsoft Access Mission Critical: How to Safeguard Your PC from Risky Updates
If your business relies on Microsoft Access databases to keep things running smoothly, you cannot afford unexpected disruptions from Office updates. In this episode, Richard Rost from Access Learning Zone breaks down a recent update snafu that left many Access users scratching their heads - and potentially volunteering as guinea pigs for Microsoft without realizing it.Find out why some seemingly stable machines suddenly get risky release candidate builds, and what that means for your organization. We talk through the pros and cons of each Microsoft 365 update channel, with practical advice about which one to choose when stability is more important than the latest features. Learn the best strategies for keeping your database - and your business - safe, from smart backup habits to choosing when (and how) updates happen.If you have ever wondered what IT pros do to avoid disaster on patch day, or whether you should trust automatic updates on your daily driver, this episode is for you. Whether you manage Access at a small business or depend on it for critical operations, these tips can keep you ahead of trouble and in control.
-
48
Database Normalization in Microsoft Access Explained Without the Jargon
Ever felt overwhelmed by all the talk of first normal form, second normal form, and wondered if you need a computer science degree just to design a solid Microsoft Access database? You are not alone. This episode cuts through the academic lingo and focuses on practical, real-world advice for Access users who just want to build clean, efficient databases - without memorizing textbook rules.Host Richard Rost breaks down the essentials: what "normalization" really means, why keeping data organized matters, and the classic mistakes everyone makes when moving from Excel to Access. Discover why keeping each table focused, eliminating duplicate data, and setting up the right relationships will keep your database healthy and flexible, even if you ignore all the fancy theory.Perfect for small business users, casual developers, and anyone who wants to level up their Access skills without getting lost in the weeds. Learn the handful of simple concepts that make most normalization problems disappear, and hear how you can avoid common pitfalls as you design your own Access applications.
-
47
Getting Started with Macros in Microsoft Access: Automate Repetitive Tasks Without Coding
Wish you could make one button in Microsoft Access do all your repetitive tasks, but do not want to become a programmer? This episode is for business users, managers, admins, and anyone who finds themselves doing the same thing over and over in Access. Host Richard Rost, drawing on decades of teaching experience, breaks down what macros are, how they differ from Excel's macros, and why they are perfect for non-programmers who still want to work smarter.Learn the common misconceptions about macros in Access, how to chain multiple actions together, and practical ways to use them for everyday tasks like opening forms, running reports, and exporting data. Richard shares real-world scenarios - like preparing mailing lists and automating startup checks - showcasing where macros truly shine and how they can save time without ever touching VBA.If you are tired of manually repeating the same steps or just want to make your Access database more powerful without learning code, you will find friendly advice, troubleshooting tips, and a few geeky jokes. Whether you are the office go-to person for Access or a small business owner looking to streamline workflows, tune in and discover how macros can make your work life easier.
-
46
Reversing Data Changes in Microsoft Access: Understanding Undo and Redo
Ever wished you could easily undo past record changes in Microsoft Access, just like hitting Control Z in Word? In this episode, Richard Rost from AccessLearningZone.com dives into how undo and redo actually work within the Access environment. You will hear why Access's undo options are much more limited than in Word or Excel, and what really happens the moment a record gets saved.Richard answers a common question from database users who want a multi-level undo option and explains Access's built-in limitations. He covers the difference between undoing a single field, an entire record, and how far back you can realistically roll back your changes. Discover what it takes to add your own undo button with VBA and why building a multi-level undo system requires extra work like logging changes in a separate table.If you have ever made a mistake a few records back or wondered why redo seems to vanish right when you need it, you will get clear, practical answers here. Tune in for an honest look at Access's undo capabilities, why they differ from other Microsoft tools, and some ideas if you want to build a more advanced solution for your database users.
-
45
Are You Overlooking This Common Microsoft Access Security Risk?
Many Access developers think their databases are locked down, but are you making a classic mistake that leaves your data exposed? This episode dives into the real limitations of Microsoft Access security, why hiding navigation panes and disabling special keys are not true protection, and what Access can and cannot do to keep data safe.Host Richard Rost shares practical insights from years of working with Access, addressing why these built-in security features mostly keep honest users honest and why determined users can often bypass them. He explains the difference between basic user restrictions and real security, discusses the benefits of moving critical data to SQL Server, and offers advice for businesses that need genuine protection.If you think hiding your tables is enough security, you will want to listen before your next database deployment. Learn the smarter approach to protecting Access data, common pitfalls developers need to avoid, and how to balance convenience with real-world security needs.
-
44
What June 24th Really Means for Your Windows 11 PC and Microsoft Office Apps
Heard the rumors that your Windows 11 computer might stop working on June 24th? Richard Rost from Windows Learning Zone breaks down the truth behind the headlines and explains what is (and is not) happening with Microsoft's secure boot updates and those expiring security certificates. Find out why most users have nothing to worry about, what secure boot actually does, and why you probably should not go poking around your BIOS or firmware.Richard answers common concerns, including whether Microsoft Access, Word, and Excel will keep running on older PCs after these changes, and shares his own approach to updating systems safely. He also delivers some practical advice for avoiding unnecessary panic, trusting Windows Update, and staying informed amid the waves of clickbait.If the online chatter about June 24th has you anxious, this episode will give you the facts and a little peace of mind, with some humor for good measure. Live long and prosper, and keep your Windows PC running smoothly.
-
43
What to Check First When Windows Feels Slow After an Update
Is your Windows PC suddenly lagging after a recent update? You are not alone, and it might not be your hardware or drivers to blame. In this episode, Richard Rost from WindowsLearningZone.com shares his frustrating experience with a sudden performance drop after updating his Lenovo Legion laptop to Windows 11. Instead of the usual suspects like CPU, memory, or graphics drivers, the real issue turned out to be a subtle power mode setting that Windows quietly changed during the update.Learn why performance modes matter more than you think, how manufacturer-specific software can impact speed, and why you should check your power settings before diving into time-consuming troubleshooting. Richard also offers practical tips for managing Windows updates on your own terms and shares a few humorous lessons learned along the way.If your computer ever starts dragging after an update, this episode will help you regain full performance and avoid unnecessary headaches. Live long and prosper, and never underestimate the impact of one small setting.
-
42
Letting Users Control Display Order in Microsoft Access: Sorting and Renumbering Records
Have you ever wished your users could decide how records are displayed in your Microsoft Access database? This episode dives into the practical techniques for building a user-controlled display order system inside Access. Richard Rost shares step-by-step insights on adding a custom sort field, handling automatic numbering for new items, and giving users the freedom to rearrange records to fit their needs - whether for fitness routines, project tasks, product catalogs, or any ordered list.Along the way, you will learn why using a double for sort order is so powerful and how to handle challenges like duplicate numbers or out-of-order records. Richard shares useful tips on forms, event handling, and resorting records, plus a little humor about gym habits and coding at night in dark mode. If you want your Access users to organize lists their way rather than relying on default sorting, this episode is packed with practical advice. It is perfect for developers looking to add a little more flexibility and control to their forms without overcomplicating things.
-
41
Preventing Multiple Microsoft Access Database Copies: Best Practices for Avoiding Double Opens
Ever run into headaches when you or your users accidentally open the same Access database more than once? This episode dives into a surprisingly common issue that pops up after you start using shortcuts to open your databases in separate Microsoft Access instances. While that technique keeps one locked-up database from taking down the others, it opens the door to another problem: people unwittingly launching duplicate copies of the same file, leading to confusion, lock-file chaos, and potential data conflicts.Join seasoned instructor Richard Rost as he explains why Access's built-in lock file system is not enough to guard against multiple opens, and hear practical, real-world techniques for tackling the issue inside your database using a bit of VBA and clever use of text files. Get tips on crafting friendly warnings for users and find out what pitfalls you need to watch out for if you want to keep things running smoothly for everyone.Whether you are an IT pro managing shared Access databases or a solo developer tired of those mysterious "someone else has this open" messages, this episode is packed with stories, gotchas, and hands-on solutions to help you keep your databases safe from accidental double opens.
-
40
Tracking Recent Design Changes in Microsoft Access: Forms, Queries, Reports and Tables
Ever find yourself unsure about what you last changed in your Microsoft Access database? This episode dives into how you can quickly identify recently modified objects - tables, forms, queries, and reports - using some hidden features inside Access. Host Richard Rost explains why this is particularly handy for troubleshooting, backup recovery, or just remembering what you worked on before the weekend or vacation.We explore the built-in system tables, especially MsysObjects, and learn how a simple query can reveal the last modified date for most of your database objects. Discover why this method works well for design changes but might fall short when it comes to tracking VBA code edits - especially in standard modules - and why that matters for power users and developers.If you have ever had to restore from a backup or justify your work to a boss, these practical tips could save you lots of time and confusion. Listen in for a conversational look at a common challenge in Access development and learn a few tricks to keep your workflow on track.
-
39
Simple Microsoft Access Queries: How to Find and Filter Your Data
If you have ever struggled to find specific records in your Microsoft Access database, this episode is for you. Access instructor Richard Rost walks through the basics of building a simple query, showing how queries let you search, filter, and save custom views of your data for repeated use.We talk about what queries actually are (hint: they do not store data, just instructions), why using them makes working with large tables easier, and some important gotchas new users often overlook. Discover why queries are more powerful than filtering tables manually, and how editing data from a query affects your original tables.If you want practical tips on making your Microsoft Access experience smoother, smarter, and a bit more professional, tune in and learn why queries are one of Access's most essential tools. Whether you are organizing contacts, tracking orders, or prepping for more advanced database designs, this is a friendly and informative starting point.
-
38
Should Developers Worry About Using AI Responsibly?
Artificial intelligence is everywhere these days, and developers are starting to ask some tough questions. Is AI just the next tool every developer needs to learn, or are there real ethical and environmental reasons to hit pause? In this episode, Richard dives into the practical realities and bigger questions around AI for developers, especially MS Access pros.You will hear a thoughtful discussion about the true costs and benefits of AI, why environmental impact matters, and why simply shutting down new technology is not a realistic answer. Richard shares how he personally uses AI to boost productivity, addresses concerns about data centers and sustainability, and explains why responsible use is more important than outright rejection.If you are working in Access or just curious where AI is headed in the world of small business databases, join the conversation about how developers and companies can adapt, learn, and use these tools in a changing world.
-
37
Why Experienced Developers Disable Name AutoCorrect in Microsoft Access
If you have ever wondered whether you should keep Name AutoCorrect enabled in your Microsoft Access databases, this episode is for you. Access veteran Richard Rost breaks down why this feature, despite its promising name, often causes confusion and hidden problems - especially as your databases grow more complex.You will learn how Name AutoCorrect is designed to help by updating dependent fields, forms, and queries when you rename things, but frequently misses crucial bits like VBA code or advanced references. Richard shares real-world scenarios where relying on this feature can lead to broken forms, malfunctioning buttons, and headaches down the line.We discuss the hidden risks of trusting AutoCorrect, the overhead it adds, and why most experienced Access developers choose to disable it as soon as a new database project begins. Hear about the divided opinions in the Access community, and how even though Name AutoCorrect can be handy for beginners, it often creates more work than it saves.Whether you are a casual Access user or starting to build larger applications, this episode will help you understand the tradeoffs and save you from frustrating debugging sessions in the future.
-
36
How Far Can Microsoft Access Go Practical Limits and Real World Performance
Curious if Microsoft Access can truly handle your growing business data? In this episode, Access expert Richard Rost breaks down the official specifications and real-world limitations of Microsoft Access, including database size, user limits, number of tables and fields, and much more. Drawing on over 30 years of experience building Access databases, Richard shares where the published numbers actually matter, common misconceptions, and what starts to break first as your database grows.Listen in for a realistic, practical look at how far Access can go before you need to think about alternatives like SQL Server, what table design mistakes to avoid, and how to spot when you are outgrowing the platform. You'll also hear why some of Microsoft's published limits might be more flexible than you think, and learn tips on making Access run smoothly even as your data and team expand.If you have ever wondered whether your Access database will hit a wall, or want to know the best practices for large Access projects, this episode is for you.
-
35
Building a Secure Password Manager and Generator in Microsoft Access
Tired of tracking your passwords on sticky notes or spreadsheets? Learn how to design a practical password manager and generator right inside Microsoft Access. Host Richard Rost walks through creating a user-friendly form, using VBA to automate strong password creation, and handling visibility controls to keep your sensitive info safe from prying eyes.This episode covers the security limitations of Access, why password storage matters, and smart approaches for protecting your data, including leveraging input masks and copying passwords securely to your clipboard. You will also hear tips for integrating username management, notes, and even ideas for tracking password change dates.If you want a hands-on, fun guide to building your own in-house password organizer and generator, all with a dash of humor and plenty of practical advice, tune in and start taking control of your digital security with Microsoft Access.
-
34
Should You Base Microsoft Access Forms and Reports on Tables or Queries?
Choosing between tables and queries as the data source for your Microsoft Access forms and reports can have a big impact on how flexible and efficient your database becomes. In this episode, we dive into one of the most common questions Access users face: when should you use a simple table, and when is it better to base your forms or reports on a query? We will discuss practical scenarios, clear up misconceptions, and explain why queries are often the better option for calculated fields, totals, and cleaner data entry workflows.Listen in as Access veteran Richard Rost shares real-life examples from the community, explains the importance of updatable queries, and walks through potential pitfalls with complex queries that could make your forms uneditable. Whether you are building a small business solution or reorganizing your Access database for better performance, this episode will help you make informed decisions and avoid common headaches when designing forms and reports.
-
33
The Simple Microsoft Access SQL Mistake Almost Every Developer Makes At Least Once - QQ 93
In Quick Queries #93, we discuss a common Microsoft Access SQL mistake that can break your queries even when the statement appears correct and walk through why a missing field name in SQL criteria causes unexpected results. We also address questions about opening Access databases in separate memory spaces, quirks in the new Form Zoom feature, usage of API code, issues with inactivity timers and popup forms, split testing YouTube thumbnails, and advice on effective recordset cleanup in VBA. We briefly mention how much API detail you need to understand and upcoming tips for managing multiple open database instances.
-
32
Form Zooming: How To Zoom Forms, Tables, And Queries In Microsoft Access. New Feature!
In this lesson, we will discuss the new form zooming feature in Microsoft Access, which allows you to zoom in and out on forms, tables, and queries for better readability. I will show you how to use the zoom controls, set default zoom levels, and explain which views and versions support this feature. We will also talk about update rollout issues, what to do if the feature does not appear after updating, and some current limitations like lack of support for Design view and pop-up forms. This lesson covers practical tips for using form zooming and managing Office updates.
-
31
Microsoft Access Database Engine x64.exe Install Error. AccessDatabaseEngine_x64.exe Fix
In this episode, we address the common "You cannot install the 64-bit version of Microsoft Access Database Engine" error, explain why 32-bit and 64-bit Microsoft Office component mismatches occur, and discuss several approaches to resolve the issue. We talk about options like extracting the database file, trying the 64-bit Access Runtime, updating older VBA code, reinstalling the correct Office version, and ensuring proper network connections to backend data. Suggestions for seeking additional help are also covered if the problem persists.
-
30
Is Microsoft Access Still Worth Learning in 2026? - QQ 92
In Quick Queries 92, we tackle the question: Is Microsoft Access still worth learning in 2026, and does it remain relevant for developers, consultants, and small business owners? I discuss Access's future, Windows' ongoing importance, and address privacy concerns. We will talk about naming confusion between form controls and variables, automating Excel imports, managing check boxes on continuous forms, best practices for storing databases, writing and importing text files, and user permission controls. Additionally, we discuss thumbnail design choices for videos, tips for VBA window management, and recommendations for printing wide reports. Member questions from YouTube and email are also answered throughout.
-
29
Customizing the Microsoft Access Ribbon
In this lesson, we will walk through how to customize the ribbon in Microsoft Access to better suit your workflow. I will show you how to add your own tabs and groups, rename them, select and organize commands for quick access, and hide tabs you do not use. We will discuss the difference between main, tool, and all tabs, importing and exporting ribbon settings, and important considerations about how these changes are stored. Customizing the ribbon can make your most-used commands easier to find without writing any XML.
-
28
Microsoft Access Not Opening? Use Separate MSACCESS.EXE Instances For Each Database
In this episode, we will address the common issue of Access not opening by explaining why Microsoft Access sometimes hangs when you try to open multiple databases in the same session. I will show you how to set up shortcuts that open each database in its own separate Access instance for greater stability, and we will discuss why this approach helps prevent one frozen database from affecting the others. I will also briefly mention additional troubleshooting resources if you continue to experience problems with Access not opening.
-
27
Microsoft Access Reports Running Slow? Here's What You're Missing - QQ 90
In Quick Queries episode #90, we address several practical Microsoft Access topics including why Access Reports might run slow and ways to speed them up, password and pass phrase strategies, considerations for 32-bit versus 64-bit Access, best practices for importing Excel data, handling date formatting, the importance of table normalization, and moving Access queries to SQL Server. We will also discuss the benefits of select case versus if then statements in VBA, handling composite keys with nulls, and the value of clear documentation for Access projects. Several questions from users are answered with practical advice and real-world examples.
-
26
How To Create Multiple Columns In Microsoft Access Reports With Text Wrapping
In this lesson, we will walk through how to create multiple report columns in Microsoft Access, making your Access Reports look more like a newspaper layout instead of a single long list. I will show you how to adjust column settings, set up text wrapping, and manage properties like Can Grow, Can Shrink, Keep Together, and Force New Page to create cleaner, more professional reports. We will also discuss using backups and how column layouts affect your report headers, footers, and detail sections. This is a beginner-level tutorial based on a customer notes report.
-
25
Microsoft Access Database Terminology Explained For Beginners
In this episode, we will discuss common Microsoft Access terminology to help you understand key concepts like tables, queries, forms, and reports. You will learn what each term means, how tables serve as the foundation for storing data, the role of primary keys, and how queries, forms, and reports help you manage and present your data. We will also briefly touch on macros and modules for automating tasks and adding custom functionality as you advance.
-
24
How to Join The Microsoft Access Beta Channel And Get New Features Early!
In today's lesson, we will discuss how to join the Microsoft Access Beta channel to access the newest features before they are officially released. I will show you step-by-step how to enable the Beta channel, including the required registry change, and walk through the process of signing up within Access. We will also talk about important precautions, such as not installing beta software on your production machine, and highlight some new features you might see, like the enhanced zoom controls and the Monaco SQL Editor. We'll briefly mention new modern chart types that are available.
-
23
Microsoft Access ODBC Insert on Linked Table Failed Error 3155 SQL Server Fix, Workaround - Quick Queries #89
In Quick Queries #89, we address troubleshooting the ODBC insert error with linked SQL Server tables in Microsoft Access, especially involving long text fields and the recent Office Build 2604 bug. We discuss practical workarounds, differences between chained and nested queries, common issues with copy and paste in Access, using and adapting web APIs when services change, and adjusting list box column widths. We also touch on database storage best practices, working with abstraction layers in programming, compatibility between 32-bit and 64-bit Access versions, and answer several viewer questions on related Access development topics.
-
22
How to Build a Dynamic Menu System in Microsoft Access Using a List Box
In this lesson, we begin building a dynamic, data-driven menu system in Microsoft Access using a list box, eliminating the need to manually add or rearrange menu buttons when changes are made to the database. I demonstrate how to create a menu table with hierarchical relationships, set up the form with a list box, and write basic VBA code to open forms based on menu selections. We discuss how to structure the menu for main items and submenus, and set up the list box to only display top-level menu items. Further sub menu functionality will be addressed in the next lesson.
-
21
The Microsoft Access Feature That Quietly Causes More Problems Than It Solves - QQ #85
In this Quick Queries episode, we discuss the pitfalls of Microsoft Access's Name AutoCorrect feature and why it often causes more problems than it solves. We will talk about launching global search forms with keyboard shortcuts in Access, inventory database design with movement tracking versus totals, issues with Excel notes, password management strategies and considerations for using Access, some challenges with VBA and module settings, and a few interface quirks. Additional topics include distributing Access applications, setting coding defaults, and updates about upcoming tutorials and events.
-
20
How to Build a Data-Driven Questionnaire & Survey Database in Microsoft Access
In this episode, we discuss how to create a data-driven survey or questionnaire system in Microsoft Access, where all survey questions and answers are stored in tables rather than being hard-coded into forms or reports. I explain the database structure, including tables for surveys, questions, sessions, and answers, and show step-by-step how to set up these tables and link them. We walk through building the necessary queries and forms to collect responses, and I demonstrate how to use a small amount of VBA code and SQL to streamline adding survey questions to answer tables. Data validation and advanced options are mentioned as topics for the extended members-only section.
-
19
Your Microsoft Access Backup Plan Might Be Missing This Critical Step - Quick Queries #84
In this episode, we will discuss the importance of testing backup restores in addition to making backups, address handling reminders in Access across different time zones, explore data normalization to avoid duplicate information, and cover strategies for importing exported data without creating duplicates. I will also show you techniques for drawing straight lines in Access, explain how Access saves data, answer questions about triggering automatic alerts, and discuss whether running 32-bit Office on 64-bit Windows causes issues. Throughout, we will review practical solutions and troubleshooting tips for common Microsoft Access scenarios.
We're indexing this podcast's transcripts for the first time — this can take a minute or two. We'll show results as soon as they're ready.
No matches for "" in this podcast's transcripts.
No topics indexed yet for this podcast.
Loading reviews...
ABOUT THIS SHOW
Richard Rost is a Microsoft MVP and President/CEO of Computer Learning Zone. He creates video tutorials to teach you how to use your computer, specializing in Microsoft Access.
HOSTED BY
Richard Rost
CATEGORIES
Loading similar podcasts...