I assume u have a check method that wants to find out which
textbox
changed.
When populating the textboxes simply write
textbox.Tag = textbox.Text;
Inside your check method write
if(!textbox.Text.Equals(textbox.Tag as string))
//this textbox changed
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "C-Sharp (C#)" group.
To post to this group, send email to C_Sharp googlegroups.com
To unsubscribe from this group, send email to
C_Sharp-unsubscribe googlegroups.com
For more options, visit this group at http://groups.
google.com/group/C_Sharp
-~----------~----~----~----~------~----~------~--~---
|