I'm new to MVC and Business Objects but I'm struggling to understand how to trigger a refresh on a form when an update occurs in my business logic.
This isn't an issue for 95% of my forms because they call the update from the form that needs to be updated.
However, In some cases an inner form does and update that requires an outer form to reflect this. I've read about Handles, Delegates, AddressOf etc etc and I'm drowning in options.
In simple terms, I need three things to happen 1. Form2 (inner form) has updated info, so the user clicks Save 2. Save calls my Data Access Layer and updates the database 3. Form1 (outer form) has a DataGrid that needs to be notified so it can update via a Sub LoadGrid
It's stage 3 I can't do. How do I trigger a Sub in Form2 (LoadGrid) to do the refresh from an external class. If I can just get this to work I'm sure I'll learn from this for other scenarios.