Check for changes

Chinavo

Member
Joined
Jul 16, 2008
Messages
16
Programming Experience
1-3
Hai

i have a form with many textboxes, combo boxes and so on.

Now if there are any changes in these textboxes or other stuff, i want to call a function.

Since this function includes some db connections and so on, i only want to call it if there are any changes at all. I know the way with the click event of the boxes. but i want to call the function only if there are any real changes and not if somebody just click into the text boxes.

thx for the help.

chinavo
 
use the TextChanged event for the TB's and the SelectedIndexChanged event for the combo's. to call your function
 
Back
Top