Link to home
Start Free TrialLog in
Avatar of pgloor
pgloor

asked on

How to correctly synchronize updates between forms?

I have a Windows application with a MainForm that has a menue and a DataGridView with two columns on it. The first column is read-only and contains Roles the current Windows user can have. The second column contains a CheckBox indicating whether the current Windows user actively participates in the Role or not. The user can edit this CheckBox.

The idea is to provide a tool for testers that allows them to switch roles for testing in a easy and fast manner by just check marking the roles they need. So far any thing works fine and as expected.

The MainForm provides a menue to let developers and administrators access forms, opend as dialogs, for further role managment and assignment. This is where the problem starts.

As an example I take the situation where a developer clicks on the menue to "Assign Roles to Users". In this case a Form is opened as a dialog. The Form contains a DataGridView similar to that on the MainForm but showing all users data and therefore having one more column with the Username.

Now the problem is, that if I mark/unmark the active flag for a role on the MainForm before opening the "Assign Roles to Users" form, that change is not contained in the data after opening the "Assign Roles to Users" form.

The DataGridViews on the two forms are based on the same DataSet and TableAdapter. However, they differ in the query. The difference in the queries is the WHERE clause (WHERE UserID = @CurrentUser).

The main problem I see is that the data do not get updated before the user actively switches the row. If the user switches the row before opening the other form, I can get the updates from the MainForm to the assignment form.

How can I get the updates and properly synchronize them between forms?

The following links includes screenshots.
1. MainForm after application has been started
http://img50.imageshack.us/img50/1876/aclmanager14ri.png

2. Select Manager role
http://img105.imageshack.us/img105/5401/aclmanager24pj.png

3. Open the form for further Role to User assignment
http://img113.imageshack.us/img113/663/aclmanager30fa.png

4. After the form has been opened, the value previousely changed in MainForm is not there
http://img50.imageshack.us/img50/5972/aclmanager48oq.png

You might also take a look at my previous question releted to the same issue:
https://www.experts-exchange.com/questions/21884549/Refresh-data-on-form-after-changes-have-been-made-in-another-form.html
SOLUTION
Avatar of devsolns
devsolns

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pgloor
pgloor

ASKER

@devsolns: Actually I already thought about MVC with an observer as an option.

However, Microsoft provides such nice tools to reduce development time and get things done faster than ever, so I almost can't believe it can't be done with what they have given to us.

@topdog779: I appreciate your answer. However, I know the basics of the MVC pattern.

Has any of you implemented the MVC pattern in a .NET application?
If yes, then I'm interested in the architecture f your implementation.

I'm also interested in thoughts about the extra effort needed.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pgloor

ASKER

Ok, after spending a couple of hours implementing MVC I'm on the right track towards a working solution that solves the actual problem but raises several new questions.

Even its implementation differs from mine, taking a closer look at the standard .NET implementation I can clearly see the MVC pattern as well. Isn't the DataSet the Model, the BindingManager the Controller and the DataGridView the View?
Implementing 'official' patterns is still very new to me.. although, we've pretty much been using the principles for years.

I think that's the key with patterns, though--using the pattern to help complete (our) designs and programs and not work so hard at making (our) ideas fit into a specific pattern!