mcelligott
Programmer
Hello All,
History: I have a database that opens very slowly. It takes easily between 45-60 seconds to open. I have stepped through the program and found exactly what command is causing the problem. The form "ECD Splash Screen" is designated as the form to display in the start up options. When the form loads, it confirms that the front-end is connected to the back-end tables. If it does not find the primary back-end, it looks for other appropriate back-ends. This part works extremely well.
It is when I get to the following statement that the delay actually occurs:
The switchboard will not display until the above command has completed. The delay is causing a real problem for us. We are a 24/7 emergency organization. The program needs to load faster.
Any thoughts what is going on and how to fix it?
Any help would be greatly appreciated.
Bob
History: I have a database that opens very slowly. It takes easily between 45-60 seconds to open. I have stepped through the program and found exactly what command is causing the problem. The form "ECD Splash Screen" is designated as the form to display in the start up options. When the form loads, it confirms that the front-end is connected to the back-end tables. If it does not find the primary back-end, it looks for other appropriate back-ends. This part works extremely well.
It is when I get to the following statement that the delay actually occurs:
Code:
DoCmd.Close acForm, "ECD Splash Screen"
The switchboard will not display until the above command has completed. The delay is causing a real problem for us. We are a 24/7 emergency organization. The program needs to load faster.
Any thoughts what is going on and how to fix it?
Any help would be greatly appreciated.
Bob