Hi,
I am experiencing very low performance on the form of my database that is stored in the LAN of my company.
On the main form, I have a combobox unbound but query using a code such as:
Is there any difference in performance if I use that code above, or I create a new query within Access with that code, and load it as control source for the combobox?
Thanks
I am experiencing very low performance on the form of my database that is stored in the LAN of my company.
On the main form, I have a combobox unbound but query using a code such as:
Code:
SELECT tbl_user.full_name FROM tbl_user GROUP BY tbl_user.full_name;
Is there any difference in performance if I use that code above, or I create a new query within Access with that code, and load it as control source for the combobox?
Thanks