When saving a form (has several listboxes tied to linked tables) it takes about 2 minutes for the changes to be saved. Any ideas would be great. Otherwise the form works great.
I've had a similar experience myself. The way around it was to specify the form's Recordsource and listbox's/combo's Rowsource at run time. Create a backup of your DB and try this out on that.
Remove references from the property window to recordsources in you form and rowsources in listbox's/combo's .
In the form's on load event your code should look something like this.
Me.Recordsource = YourFormQuery or YourFormSQL
Forms!YourListBox.RowSource = YourListBox or YourListBoxSQL
Forms!YourComboBox.RowSource = YourComboBox or YourComboBoxSQL
Do this for any sub form as well. It should save a lot of time at design time.
Me.Recordsource = YourFormTable/Query or YourFormSQL
Forms!YourListBox.RowSource = YourListBoxTable/Query or YourListBoxSQL
Forms!YourComboBox.RowSource = YourComboBoxTable/Query or YourComboBoxSQL
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.