Hello!
I currently have a continuous form and am using Me.Refresh as an After Update event for multiple controls on the form. Everything preforms great when there is a single user, but when multiple users are running their DB (back end is split out, each user has their own front end DB), performance becomes slow and choppy. (Bottleneck points appear to be at each refresh) I have already attempted to remove a few refresh points, but doing so made the user-friendliness of the app decrease. I have also gone through and added a few if statements in my code to try and eliminate unnecessary queries.
It seems like the problem is partially to blame on the entire form, sometimes up to 25 records, refreshing every time the Me.Refresh event occurs. Is there any way to update a single record on the form so that all other non active records are left alone?
Thanks!
I currently have a continuous form and am using Me.Refresh as an After Update event for multiple controls on the form. Everything preforms great when there is a single user, but when multiple users are running their DB (back end is split out, each user has their own front end DB), performance becomes slow and choppy. (Bottleneck points appear to be at each refresh) I have already attempted to remove a few refresh points, but doing so made the user-friendliness of the app decrease. I have also gone through and added a few if statements in my code to try and eliminate unnecessary queries.
It seems like the problem is partially to blame on the entire form, sometimes up to 25 records, refreshing every time the Me.Refresh event occurs. Is there any way to update a single record on the form so that all other non active records are left alone?
Thanks!
Comment