I have been working on an Access application that has around 70 forms and 40 queries.
What is the standard procedure to make your forms/queries manageable? What are the standard naming conventions?
Currently I use:
<Prefix (T for tables, Q for queries, F for forms and R for reports)>_<some specific name>_<Suffix (for forms specifically - SF - single form, DS - datasheet...)>
So for examples a F_Orders_S would be some single form view of the orders.
However, this is becoming a mess as the application expands.
One solution would be to split the front end into several smaller front ends, but that seems counterproductive as users would have to switch between them to do what they need to do.