Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8417681
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:07:27+00:00 2026-06-10T02:07:27+00:00

I have 2 WinForms where one is parent and passing parameter to it’s chilf

  • 0

I have 2 WinForms where one is parent and passing parameter to it’s chilf form. The code goes something like this:

public class FormMain : Form {
private User user;

public FormMain (User user) {
InitializeComponent();
this.user = user;
}

private void btnUpdateAccount_Click(object sender, EventArgs e)
        {
            updateUser = new FormUsersUpdate(user);
            updateUser.Show();
        }
}

and this:

public class FormUsersUpdate(User user){

//Update user in database

}

User class have some usual properties like Name, surname, etc. So my question is how to inform parent class about this update without need to again retrieve user from database?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T02:07:29+00:00Added an answer on June 10, 2026 at 2:07 am

    You can invoke a callback delegate after the update. In FormMain:

    private void btnUpdateAccount_Click(object sender, EventArgs e)
    {
        updateUser = new FormUsersUpdate(user, new Action<User>(OnUserUpdated));
        updateUser.Show();
    }
    
    private void OnUserUpdated(User user)
    {
        // Whatever you wanted to do with the updated user.
    }
    

    In FormUsersUpdate:

    public class FormUsersUpdate(User user, Action<User> callback)
    {
        // Update user, then invoke the callback using the updated user instance,
        // which will call the OnUserUpdated method of the FormMain:
        callback.Invoke(user);
    }
    

    ShowDialog is mostly a better choice but I never tried it on an mdi child:

    private void btnUpdateAccount_Click(object sender, EventArgs e)
    {
        updateUser = new FormUsersUpdate(user);
        updateUser.ShowDialog();
    
        // Will wait until the user closes the dialog box.
        // FormUserUpdate keeps the updated user in a property called User:
        OnUserUpdated(updateUser.User);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this WinForms project (based on this one , but modified for SharePoint
I have a winforms app. Inside, I have one panel (panel1), and inside this
I have a simple winforms app with one form, a few controls and a
I have a winforms application. I have a textbox on one form (call F1)
I have a winforms datagridview that seems to always have at least one row
I have a winforms app. I give it to three clients and each one
I have a WinForms utility that I use constantly, and enhance regularly. Roughly one
Is this possible? We have WinForms (CF) apps which use the EMDK, and would
I have a WinForms application, and wanted to add some nice WPF controls, one
I have a winforms application that doesn't really have a main form - it's

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.