Is there a way to access a controls default value?
I have a form with several unbound controls. After the user is is finished with a specific record, and the data is saved, I want to reset ALL 30 controls on the form to their “default”. 28 of the 30 are text boxes, and two are check boxes.
I prefer not to set up lines of VB code to for each control, but instead would like to loop through the controls in a for/next loop, something like a:
For each control in . . . .loop
Thanks in advance for your ideas.
Ken