tags:

views:

934

answers:

6

I have a form with several components like textbox and combobox and I need to know when click in the out button if was any changes in the form. There are any way to do this?

A: 

The easiest way to do this would be to simply use a variable on the form named something like "IsChanged." Set it false when the form is initially displayed, and set it true if they make any changes.

Alternately, you could record the values of everything when the form is displayed, and when they finish, check the current values against the old ones to see if anything changed.

mquander
A: 

Hi

Thanks for your answer The problem is that the application is already almost finished and is impossible to do like you suggest. Could you tell me if there are a way to control if any information of the form was changed ?? If the are any event in the form that is active if any of the control is active too

Maria

Maria João
+2  A: 

You could create a generic change event handler which sets a flag on change, and then assign all the controls' Change events to it.

This could probably be done pretty easily by looping through all of your controls onload.

Luke
+1  A: 

You could loop through all controls but this would have to be recursive because a control can contain controls, e.g. (no null checks for brevity):

private void IterateOverControls( Control parent )
{
    ProcessControl( parent );

    foreach( Control control in parent.Controls )
        IterateOverControls( control );
}

In ProcessControl you could hook up event handlers to handle OnEnter (to store the state) and OnLeave (to check the current state against the stored state). You'd need to unhook all the event handlers when disposing. Also, the code to store check the state would have to change for different control types, e.g. TextBox would be the Text property, but a radio button would be an index, etc. Obviously this becomes simpler if you can compare form state to your underlying data store state, in which case you can just make the comparison on each OnLeave event.

One thing also to consider is do you need to track real changes? For example, I have 2 radio buttons: A and B. I check B (a change), so the out button or whatever has its Enabled property changes. I then click on A (i.e. back to my original state). Do you need to revert the button at that point?

This is why you should look towards a model view controller approach :)

ng5000
A: 

If this is already nearly finished, and you need something quick it's probably going to be easier to just always assume that something has changed, then in your update logic afterwards (whatever it's doing) don't update stuff that is still the same.

As someone else mentioned, it's very possible for someone to change something, then change it back. What would you want to do in that case? You won't be able to maintain a proper dirty state of the form without a fair bit of additional work.. this is something that you need to plan for before you start, really.

pezi_pink_squirrel
A: 

Yes we already should think in this but it was a request of that appears now . And the application have too mamy screens and contorls that i was trying to do something to control the changes but in the form . But problebly what i want is not very easy to do :)

Maria João