Is Microsoft Access Still a Good Business Solution in 2026?

For decades, Microsoft Access has occupied a distinct role in the business software landscape. It has served as a bridge between spreadsheets and enterprise database systems, giving power users the ability to build custom applications without the need for a full development team. This positioning made it especially valuable for departments that needed tailored solutions but did not have the resources or time to invest in larger platforms. As business requirements and software ecosystems continue to evolve, it is reasonable to reassess whether Access still provides strong value as a modern solution.
 
Continue reading

How-To Recover Deleted Files

This is one of those questions that keeps continuously coming up in forums and I thought I’d quickly post a few programs that can help recover deleted files. These are programs I have used or that have been recommended by other community members in various discussions.

The following list is in no particular order. Some applications are free, others offer free trials and some are outright paid for.
 
Continue reading

Uploading a File in Chunks in Yii2

I had a long-running application that uploaded files whenever a form was submitted, and for years everything worked perfectly.

Then came the migration.

The app needed to move to a Managed Azure App Service slot running NGINX, and that’s where we hit an unexpected problem: file uploads larger than 1 MB were being rejected.


413 Request Entity Too Large

413 Request Entity Too Large


nginx/1.28.0
NGINX

At first, this seemed like a straightforward problem to fix. Some brief research indicated NGINX normally allows this limit to be changed using the client_max_body_size setting in the configuration file. We added the setting, restarted the app, and expected everything to work.

It didn’t.
 
Continue reading

Thoughts of Support for Mike Wolfe and NoLongerSet.com

If you haven’t already seen it, NoLongerSet.com is temporarily offline while Mike Wolfe investigates and remediates a security incident. Although this security incident does not impact me directly, I think it important to express my respect for the transparency, quick disclosure, and responsible handling of a difficult situation.
 
Continue reading

Microsoft Access Zoom Slider Roadmap Item Mutation

Roadmap with markers

Interesting change spotted on the Microsoft 365 Roadmap for Microsoft Access. Microsoft appears to have quietly changed the Microsoft 365 Roadmap for Microsoft Access.

Previously, the roadmap included a single item:

Access: Add zoom slider magnification to Microsoft AccessMicrosoft -- Access Roadmap


 
Continue reading

Rounded Corners Coming to Microsoft Access Forms

Roadmap with markers

Microsoft quietly added another new Microsoft Access item to the Microsoft 365 roadmap today: ‘Access: Rounded corners on Access form controls’.

The new ‘CornerRadius’ property will let developers give controls a softer, more modern appearance directly inside Access forms.
 
Continue reading

Listing Microsoft Access Table Indexes with VBA Code

In any database system, indexes play a critical role in performance, data integrity, and overall application reliability. As databases grow larger and more complex over time, keeping track of how tables are indexed becomes increasingly important. That is where a utility function like ‘ListTableIndexes’ becomes especially useful.

At a high level, the purpose of the function is simple: it generates a readable summary of all indexes associated with a specific Microsoft Access table. Instead of manually opening table design views and inspecting index settings one by one, a developer or database administrator can run a single function and immediately see how a table has been structured behind the scenes.

While this may sound like a small convenience, it can save significant time in real-world environments.
 
Continue reading