I have some code that executes on the 'On Timer' event of a form. I have some variables that I currently store in public arrays, about 12. Eventually there may be up to 15 or so forms open that all will trigger some code using the ‘On Timer’ event on each form. Once open the will run constantly.
Is it better/quicker to store values that I need to keep between timer events in memory, via public variables or should I store the values in hidden text boxes on the form and recall them when needed? (Or does it make any difference?)
Is it better/quicker to store values that I need to keep between timer events in memory, via public variables or should I store the values in hidden text boxes on the form and recall them when needed? (Or does it make any difference?)