determine if multiple databound textboxes have changed?

  • Thread starter Thread starter Kyote
  • Start date Start date
K

Kyote

On a tab page on my form I have about 24 data bound text boxes. I
would like to avoid having to check each individual text box's
modified property to determine if 1 or more has been changed. Is there
a way to do this?

The only thing I can think of is to go back and copy the name of each
text box to an array and then iterate through that array to do the
check. Is there an easier way available?
 
Thank you for replying and for helping.

I didn't realize that the dataset had a haschanged property that I was
able to check and determine if a change had occured(which is what I
was needing). Your post helped me to do the check when the app is
being closed. Thank you very much.
 
Back
Top