Hey experts -
A brief history - I inherited an application that has tens of thousands of lines of code, more than a hundred forms, even more tables/queries, etc etc. It's far exceed what I would have put into an Access 2002 application (honestly it should be on .NET or converted to web app), and it's not always super efficient. Myself, I'm a PHP & .Net programmer, so jumping back to VBA has been... interesting.
Here's the problem. A form is loaded that calculates the line items, and eventual totals, for an invoice. This was taking upwards of 2.5 minutes to load on a speedy new machine, 6-7 minutes on an old clunker. The processor gets overloaded on the older machines, running at 99% for the entire time. I've set breakpoints and narrowed down the delay to the following:
The record source update is run 5 or 6 times, and each one takes 30-60 seconds.
I was able to test a version from January, and this totals screen loaded in 5-8 seconds.
I went to troubleshoot it further today, and now it only takes 5-8 seconds as well. The only thing I ran that I can think would have resolved this was a compact & repair. Can that resolve something like this? Otherwise, what would cause this?
Thanks,
Scott
A brief history - I inherited an application that has tens of thousands of lines of code, more than a hundred forms, even more tables/queries, etc etc. It's far exceed what I would have put into an Access 2002 application (honestly it should be on .NET or converted to web app), and it's not always super efficient. Myself, I'm a PHP & .Net programmer, so jumping back to VBA has been... interesting.
Here's the problem. A form is loaded that calculates the line items, and eventual totals, for an invoice. This was taking upwards of 2.5 minutes to load on a speedy new machine, 6-7 minutes on an old clunker. The processor gets overloaded on the older machines, running at 99% for the entire time. I've set breakpoints and narrowed down the delay to the following:
Code:
sql = "SELECT * FROM qryTotalsDisplay WHERE TotalLabel_Group = ""XXXXXXXXXX"""
Set db = CurrentDb()
Me.sfrmWFTotal.Controls("sfrmWFTotalP").Form.RecordSource = Replace(sql, "XXXXXXXXXX", "Parts")
The record source update is run 5 or 6 times, and each one takes 30-60 seconds.
I was able to test a version from January, and this totals screen loaded in 5-8 seconds.
I went to troubleshoot it further today, and now it only takes 5-8 seconds as well. The only thing I ran that I can think would have resolved this was a compact & repair. Can that resolve something like this? Otherwise, what would cause this?
Thanks,
Scott