A poor design well implemented does not make it a good design. I doubt any database developer is going to agree that a database application with hundreds of public variables is a good design. Maybe someone will. I would be very interested if you find someone on this forum that agrees this is a good approach. I have no doubt that you can make this work, but most people will agree that there are better smarter ways. Encapsulation, data integrity, debugging, fault tracing, etc, etc. Back in the old days before Object Oriented programming and event driven programming there was no other way than maintaining lots of globals, I think those days are gone.
I can take the worst non-normalized database and slap on some slick forms and enough vba and people will think it is great. It will work great. But that does not make it good and would not recommend it.
There may be times to use a public variable, but most of the time there is a better way.
Not saying this is your case, because I am sure you are very knowledgeable. But in general when I see applications with lots of public/global variables the developer does not know (some or all):
1. How to pass arguments to procedures
2. How to return values from functions
3. How to build a parameterized query definition
4. How to pass and return values from forms
5. How to build custom classes
6. How to build user types
7. How to do enumerations
When a developer only has a hammer everything looks like a nail.
In Access if you absolutely need to use a global variable then use a TEMPVAR. I do not use TEMPVARS much, but if there was a pressing need to use a global variable then there is no reason not to use a TEMPVAR instead. (unless for some reason you need to have a global variable that is an object). A TEMPVAR was specifically made so that you can use it in a query without an additional function. TEMPVAR functions like a global variable but has advantages.
When I look at your file, I would assume all those values are coming from a table/s and could be easily accessed. So why you would need most of those variables?