I am creating an app which currently has 3 forms,
- Parent form - to accept login details from the user, validate and if successful hides itself and opens a child form.
- 1st Child form - on form load connects to the database fetches data and displays it. Click on new entry and another child form opens.
- 2nd child form - user enters new data for new entry in the database, on success a success message box comes up. user then may click on close button and this form hides itself and the 1st Child form is shown.
what i want to do is to find out someway to reload the 1st Child form, on closing thee 2nd Child form. This will result in the records being displayed in it to get refreshed and thus show the new entry that was just made using the 2nd Child form.
Please guide me as to how i can achieve this.