northernbeaver
Programmer
I have a form in an Access 2000 DB it has a Quote form that is huge to say the least, the control source of the form is a combination of about 6 big tables
(i.e SELECT
(i.e SELECT
Table said:.*, Customers.*, Contacts.*, [Ship To Customers].*, [Materials Table].*,Table said:.[Symtec Notes] FROM [Materials Table] RIGHT JOIN ([Ship To Customers] RIGHT JOIN (Contacts RIGHT JOIN (Customers INNER JOINTable said:ON [Customers].[CustomerID]=Table said:.[CustomerID]) ON [Contacts].[ContactID]=Table said:.[ContactID]) ON [Ship To Customers].[ShipToID]=Table said:.[ShipToID]) ON [Materials Table].[MaterialID]=Table said:.[MaterialID]; )
the problem Im having is that this form to open is VERY slow, about 30-45 seconds on a good day, does it help speed things up if you only select the fields of each table you actually need to show on the form?