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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:56:38+00:00 2026-05-29T19:56:38+00:00

I have created an application which inserts data into a SQL database. Basically, from

  • 0

I have created an application which inserts data into a SQL database. Basically, from the main form, users open a second form which prompts them for the data which will go into the database. The code looks like this:

       private void submitButton_Click(object sender, EventArgs e)
        {
//Get form values
                try
                {
//Open test connection
                }
                catch (Exception ex)
                {
//Handle errors
                }
                finally
                {
//Close test connection
                }

                //Run the SQL statements
                try
                {
//Inser SQL data
                }
                catch (Exception ie)
                {
//Handle errors
                }
                finally
                {
                    //Close the connection
                    if (conn.State != ConnectionState.Closed)
                    {
//Close the connection
                    }
                     //Close the window
                     this.Close();
                     //Tell the main form to reload SQL data (not working)
                     mainForm firstForm;
                     firstForm = new mainForm();
                     firstForm.refreshCall();

                }

            }
        }

So basically, when the user hits OK (submitButton), the data is inserted, the window is closed, and the refreshCall() method is called. My method ‘refreshCall’ is supposed to refresh the SQL data which is outputted on the main form, like this:

public void refreshCall()
{
    SqlConnection conn = new SqlConnection("Data Source=SERVER\\SQL_DB;Initial Catalog=dataTable;Integrated Security=True");
    try
    {
        conn.Open();
        DataSet ds = new DataSet();
        SqlDataAdapter adapter = new SqlDataAdapter("SELECT part_num from dbo.Parts", conn);
        adapter.Fill(ds);
        this.listParts.DataSource = ds.Tables[0];
        this.listParts.DisplayMember = "part_num";
        conn.Close();
    }
    catch (SqlException odbcEx)
    {
        MessageBox.Show("There was an error connecting to the data source.\nError Code: 1001", "Database Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    }

}

However, when this method is called, the data remains un-refreshed, which means I have to close the application and reload it to see my changes. Is there something I’m doing wrong in my code that causes the SQL data to remain unchanged? Is there a better way to do this? I should also note that I use the exact same code from refreshCall to load the data when the form is initialized, and it works fine.

Any help is appreciated!

  • 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-29T19:56:40+00:00Added an answer on May 29, 2026 at 7:56 pm

    It appears that the second form is creating a new instance of the main form. The new instance never gets displayed. You need to get your existing main form for your refreshCall.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to globalize my application. I have created a small form which asks
I have created the application which is based on Sqlite database. So in my
I have created the Simple Application of the sqlite database. In which i am
I have created an application which needs 'hand-over' to the support group in the
I have created an application which needs to have a profile box tab which
We have created an application which we want to run in a 64 bit
I have created a small application which opens,reads and creates Excel files. The app
I have created a simple win 32 application..in which it has a textbox and
I have created a blog application using Ruby on Rails which includes the ability
I have created a Web Application in asp.net 2.0. which is working fine on

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.