简体   繁体   中英

Showing message box in form2 when i press the cancel button

I have got three forms, of a winform app. in which form3 there are two butons and some textboxes. I wanted to know why my form is showing a messagepop called "Duplicate" when I press the cancel button of the form.

I actually told the form3 to cancel and return to the form1. Its doing the job. but before coming to the form1 it's showing me a messagebox "Duplicate" which I don't want to see.

How can I avoid this popup?

Codes in form3

   private void submit_Click(object sender, EventArgs e)
    {

        // this button click event handler will raise the 
        // event which can then intercepted by any listeners
    //some codes....
        this.Dispose();
    }

private void cancel_Click(object sender, EventArgs e)
    {
        this.Close();
    }

Codes in form1

private void btn_open_form3_Click(object sender, EventArgs e)
    {
        Form3 f = new Form3();
        string l = "true";
        // Add an event handler to update this form
        // when the address form is updated (when AddressUpdated fires).
        f.AddressUpdated += new Form3.AddressUpdateHandler(AddressForm_ButtonClicked);

        f.ShowDialog();
        if (String.IsNullOrEmpty(file_NameTextBox.Text.ToString()))
        {
            frmShowMessage.Show("Try again!!!", "Missing!!!!", enumMessageIcon.Error, enumMessageButton.OK);
            //cell_check();
        }
        else
        {
            if (checkexistornot())
            {
                if (file_NameTextBox.Text == string.Empty)
                {
                    cell_check();
                }

                else
                {
                    SqlConnection con = new SqlConnection(@"Data Source=DVSQL\SQLEXPRESS;Initial Catalog=CncDB;Persist Security Info=True;User ID=CncDbUser;Password=*****");
                    con.Open();
                    SqlCommand cmd = new SqlCommand(@"INSERT INTO cncinfo (part,drawings,draftpath,comments) VALUES ('" + file_NameTextBox.Text + "','" + drawingsTextBox.Text + "','" + gcodeTextBox.Text + "','" + commentsTextBox.Text + "') ", con);
                    cmd.ExecuteNonQuery();
                    con.Close();
                    load_table();
                }
            }
        }
    }

    private void AddressForm_ButtonClicked(object sender, AddressUpdateEventArgs e)
    {
        // update the forms values from the event args
        file_NameTextBox.Text = e.File_Name;
        drawingsTextBox.Text = e.Drawings;
        gcodeTextBox.Text = e.Gcode;
        commentsTextBox.Text = e.Comments;
    }

    public bool checkexistornot()
    {
        SqlConnection con = new SqlConnection(@"Data Source=DVSQL\SQLEXPRESS;Initial Catalog=CncDB;User ID=CncDbUser;password=*****");
        con.Open();
        SqlCommand cmd = new SqlCommand("select part from cncinfo where part='" + this.file_NameTextBox.Text + "'  ;", con);
        cmd.CommandType = CommandType.Text;
        cmd.Parameters.Add("@part", SqlDbType.NVarChar).Value = Convert.ToString(dataGridView1.Rows[0].Cells["Part Number"].Value);
        object obj = cmd.ExecuteScalar();
        cmd.ExecuteNonQuery();
        con.Close();
        if (obj!=null)
        {
            frmShowMessage.Show(""Duplicate!!!!", enumMessageIcon.Warning, enumMessageButton.OK);//- - - ->>showing this line if i press the cancel_Click from FORM3
            cell_check();
            return false;
        }
        else  
            return true;
    }

If you want your code to not execute code after clicking the cancel button in Form3, one option is taking advantage of the DialogResult property.

Cancel button click handler:

private void cancel_Click(object sender, EventArgs e)
{
    this.DialogResult = DialogResult.Cancel;
    this.Close();
}

Imediately after showing Form3 ("f.ShowDialog();")

if (f.DialogResult == DialogResult.Cancel)
{
    return;
}

Hope it helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM