G
Guest
Hi,
I have a form with 45-60 controls, a mix of checkboxes, textboxes, and
comboboxes. My users would like to have a continuous historical record of
changes to each record on the form. Is there an easy way to cycle or loop
through each of the controls to see which ones have been changed. I know you
can check if the anything in the entire form has been changed by using "if
me.dirty = true then". However, if that is true I somehow need to check each
control individually for changes because the user needs to know each specific
change. Anyways, is there an easier way to check each control for changes
instead of doing
me.control1.dirty
me.control2.dirty
me.control3.dirty
and so on.....
That's what I was planning on doing, but I was hoping someone would know an
easier way.
Thank you in advance,
Alex
I have a form with 45-60 controls, a mix of checkboxes, textboxes, and
comboboxes. My users would like to have a continuous historical record of
changes to each record on the form. Is there an easy way to cycle or loop
through each of the controls to see which ones have been changed. I know you
can check if the anything in the entire form has been changed by using "if
me.dirty = true then". However, if that is true I somehow need to check each
control individually for changes because the user needs to know each specific
change. Anyways, is there an easier way to check each control for changes
instead of doing
me.control1.dirty
me.control2.dirty
me.control3.dirty
and so on.....
That's what I was planning on doing, but I was hoping someone would know an
easier way.
Thank you in advance,
Alex