Working with referances

  • Thread starter Thread starter Oded Kovach
  • Start date Start date
O

Oded Kovach

Hello there

I have huge application on access

I have reached to the limit of moduls on my application

Therefore i need to use referances. The problem is:

i have two mde: master, secondery when the master have referance to the
secendery

If i would like to open object from the secendery i can't unless i have
function on the secendery that open the object

When i am on the secendery i can open any object form the master but i can't
run any module from it.

When i will need more then one secondery mde i can't reach from one
secondery to another

Can somone hemp me to understand what shoud i do to run it properly?
 
Can somone hemp me to understand what shoud i do to run it properly?

I would consider breaking up the application it self. The number of
allowable modules is 1000. (you can and do put more then one routine in each
code module..right?).

If in fact you do have 1000 forms (actually is 1000 forms + number of
modules), then you can:

Take a 100 or so modules and simply m,erge the code into a larger module.

Or, better, break up the application side. Move related groups of modules
and forms out to a separate application, and then launch that application
from some type of main menu system.

Further, is the problem here that you have nearly 1000 forms, or nearly 1000
modules? (1000 modules does NOT make any sense at all here). Further, 1000
forms is not likely workable at all either. You need to break this up into
separate applications.
 
Back
Top