I have a Access2003 database where the backend is split from the frontend. A number of forms have combo boxes that lookup data in the backend and then load the data into the form in the OnChange event.
Would the the database run faster, network traffic etc., if I used a query as a control source for the combo box or an SQL statement as follows:
SELECT DISTINCT Tbl1.Field, Tbl1.Field2, FROM Tbl1 ORDER BY Tbl1.Field1;
Thanks
Eddy
Would the the database run faster, network traffic etc., if I used a query as a control source for the combo box or an SQL statement as follows:
SELECT DISTINCT Tbl1.Field, Tbl1.Field2, FROM Tbl1 ORDER BY Tbl1.Field1;
Thanks
Eddy