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

  • Home
  • SEARCH
  • 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 876507
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:26:37+00:00 2026-05-15T11:26:37+00:00

I have a Windows form that’s generated using code (including buttons and what not).

  • 0

I have a Windows form that’s generated using code (including buttons and what not). On it, amongst other things, there is a text box and a button. Clicking the button opens a new Windows form which resembles an Outlook contact list. It’s basically a data grid view with a few options for filtering. The idea is that the user selects a row in this home-made contact book and hits a button. After hitting that button, the (second) form should close and the email address the user selects should be displayed in the text box on the first form.

I cannot use static forms for this purpose, so is there any way to let the first form know the user has selected something on the second firm? Can you do this with events, or is there another way? Mind that I hardly know anything about delegates and forms yet.

Please advise.


Edit 1 = SOLVED

I can return the email address from the second form to the first form now, but that brings me to another question. I am generating controls and in that process I’m also generating the MouseClick eventhandler, in which the previous procedure for selecting a contact is put.

But how do I, after returning the email address in the MouseClick eventhandler, insert that information into a generated text box? Code to illustrate:

        btn.MouseClick += new MouseEventHandler(btn_MouseClick);

That line is put somewhere in the GenerateControls() method.

    void btnContacts_MouseClick(object sender, MouseEventArgs e)
    {
        using (frmContactList f = new frmContactList())
        {
            if (f.ShowDialog(fPrompt) == DialogResult.Cancel)
            {                    
                var address = f.ContactItem;
                MessageBox.Show(address.Email1Address.ToString());
            }                
        }
    }

That appears separately in the class. So how do I put the email address into a text box I previously generated?

  • 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-05-15T11:26:38+00:00Added an answer on May 15, 2026 at 11:26 am

    Forms in .Net are normal classes that inherit from a Form class.

    You should add a property to the second (popup) form that gets the selected email address.

    You should show the popup by calling ShowDialog.
    This is a blocking call that will show the second form as a modal dialog.
    The call only finishes after the second form closes, so the next line of code will run after the user closes the popup.

    You can then check the property in the second form to find out what the user selected.

    For example: (In the first form)

    using(ContactSelector popup = new ContactSelector(...)) {
        if (popup.ShowDialog(this) == DialogResult.Cancel)
            return;
        var selectedAddress = popup.SelectedAddress;
        //Do something
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 464k
  • Answers 464k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The clue is the position of the colon in the… May 16, 2026 at 1:03 am
  • Editorial Team
    Editorial Team added an answer I wouldn't know about 1 and 2. But if you… May 16, 2026 at 1:03 am
  • Editorial Team
    Editorial Team added an answer Is this all you're looking for? public void AddToList(Employee emp)… May 16, 2026 at 1:03 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.