OlafOdersky
Programmer
I have three databases (mdb):
Main.mdb -> references ReportTool.mdb
ReportTool.mdb
Auto.mdb -> references Main.mdb & ReportTool.mdb
There are some automatic procedures in the Main.mdb which causes the database to grow extremly. Because the Main.mdb cannot be compressed while running I created a new database Auto.mdb that should start the automatic procedures in the Main.mdb and compress the Main.mdb after the size of the Main.mdb exceeded a specific value. The Main.mdb uses some functions in the ReportTool.mdb, so I need a reference from the Main.mdb to the ReportTool.mdb.
Now the problem in the Auto.mdb is the following:
The code cannot be compiled because the reference from the Main.mdb to the ReportTool.mdb cannot found in the Auto.mdb.
The compiler stops at a function in the Main.mdb ( Main.StartReport() ) that calls a routine in the ReportTools.mdb ( ReportTool.OpenAutoReport() )
How can this be done - any suggestions?
Thanks in advance
Olaf
Main.mdb -> references ReportTool.mdb
ReportTool.mdb
Auto.mdb -> references Main.mdb & ReportTool.mdb
There are some automatic procedures in the Main.mdb which causes the database to grow extremly. Because the Main.mdb cannot be compressed while running I created a new database Auto.mdb that should start the automatic procedures in the Main.mdb and compress the Main.mdb after the size of the Main.mdb exceeded a specific value. The Main.mdb uses some functions in the ReportTool.mdb, so I need a reference from the Main.mdb to the ReportTool.mdb.
Now the problem in the Auto.mdb is the following:
The code cannot be compiled because the reference from the Main.mdb to the ReportTool.mdb cannot found in the Auto.mdb.
The compiler stops at a function in the Main.mdb ( Main.StartReport() ) that calls a routine in the ReportTools.mdb ( ReportTool.OpenAutoReport() )
How can this be done - any suggestions?
Thanks in advance
Olaf