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 7851029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T19:04:03+00:00 2026-06-02T19:04:03+00:00

I am trying to update a SQL databound combobox with new information from a

  • 0

I am trying to update a SQL databound combobox with new information from a new form. After I make the adds/edits and save on the popup form, I want to refresh the combobox with the new info and select the currently added/edited item. Currently, the code below refreshes the list, but will not modify “myID” on the parent form as I thought a reference variable should. How can I most efficiently do this? I have about 20 forms to do a similar type thing.

In form1

    int newid = 0;
    private void addToolStripMenuItem1_Click(object sender, EventArgs e)
    {
        CoalSeamsForm csf = new CoalSeamsForm(ref newid);
        csf.ShowDialog();
        coalSeamsTableAdapter.Fill(well_Information2DataSet.CoalSeams);
        coalSeamsBindingSource.Find("CoalSeamID", newid);
    }

In form 2

    int myID = 0;

    public CoalSeamsForm(ref int myId)
    {
        this.myID = myId;
        InitializeComponent();
    }

    private void CoalSeamsForm_FormClosing(object sender, FormClosingEventArgs e)
    {
        if (!isOK)
        {
            if (DialogResult.Yes == MessageBox.Show("Would you like to save the changes?", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
            {
                Save();
                DataRowView drv = (DataRowView)coalSeamsBindingSource.Current;
                myID = (int)drv["CoalSeamID"];
            }
        }
    }
}
  • 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-02T19:04:04+00:00Added an answer on June 2, 2026 at 7:04 pm

    Reference parameters only work within the calling method/constructor. Once they are outside of that individual method, they become copies within the second object. To implement, from the suggestions of Steve and others, I used a public property and accessed it from the first form. Also, I used a databound combobox in the posted code, which is a more typical application from me vs. setting the BindingSource.Position property.

    In form1

    private void addEditCoalSeams(bool isAdd)
        {
            int? myId=null;
            if (!isAdd)
            {
                myId = (int?)coalSeamsComboBox.SelectedValue;
            }
    
            using (CoalSeamsForm csf = new CoalSeamsForm(myId, isAdd))
            {
                if (DialogResult.OK == csf.ShowDialog())
                {
                    coalSeamsTableAdapter.Fill(well_Information2DataSet.CoalSeams);
                    coalSeamsComboBox.SelectedValue = csf.coalID;
                }
            }
        }
    

    In CoalSeamsForm

        public int? coalID {get; set;}
        bool isAdd = false;
    
        public CoalSeamsForm(int? coalId, bool isAdd)
        {
            this.coalID = coalId;
            this.isAdd = isAdd;
            InitializeComponent();
        }
    
        private void okButton_Click(object sender, EventArgs e)
        {
            Save();
            DataRowView drv = (DataRowView)coalSeamsBindingSource.Current;
            this.coalID = (int)drv["CoalSeamID"];
            this.DialogResult = DialogResult.OK;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to update my SQL Server CE database after commiting changes to
I am trying to update database fields from one SQL Server table to another.
I am trying to update a sql table with x amount of rows from
I'm trying to update a package in Oracle, coming from SQL Server this has
I have an error in log after when trying to update the database: java.sql.SQLException:
I am developing a SSIS package, trying to update an existing SQL table from
I'm trying to update the sql db by a List of variables sent from
I'm trying to update an NText field in SQL 2000 using Classic ASP. Here
So I'm trying to update an object in my MS SQL 2005 database using
I am trying to figure out how I can update my sql query dynamically.

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.