Well, I have a problem that I can solve by hand, but I really wouldn't want to.
I want to move my form calculation out of my form timer and into the AfterUpdate events of all my controls. Unfortunately, the number of controls is roughly speaking, huge, and spread across about 8 different subforms (I ran out of space to put them in on the main form, so subformed them all instead)
The calculation runs in under half a second, but at the moment it is being run every half a second in the timer, and this can cause some serious slowdowns. I would update the controls so that they update the relevant controls as needed, but this is about as huge a task as putting everything in manually.
So, any help on how to use an access routine to update my module code and add in some AfterUpdate events for controls would be appreciated
I want to move my form calculation out of my form timer and into the AfterUpdate events of all my controls. Unfortunately, the number of controls is roughly speaking, huge, and spread across about 8 different subforms (I ran out of space to put them in on the main form, so subformed them all instead)
The calculation runs in under half a second, but at the moment it is being run every half a second in the timer, and this can cause some serious slowdowns. I would update the controls so that they update the relevant controls as needed, but this is about as huge a task as putting everything in manually.
So, any help on how to use an access routine to update my module code and add in some AfterUpdate events for controls would be appreciated