Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a datagridview that works fine today. It consists of a few columns of data and 2 DataGridViewButtonColumn columns that work using CellContentClick functionality. The code for the current functionality today is as follows (my questions are after this code sample):

private void grd1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            DataGridView dgv = (DataGridView)sender;
            int amortControlKey = int.Parse(dgv.Rows[dgv.SelectedCells[0].RowIndex].Cells[4].Value.ToString());
            string msg = "";
            dgv.Rows[dgv.SelectedCells[0].RowIndex].Selected = true;

            switch (dgv.Columns.Count - e.ColumnIndex)
            {
                case  2:
                    {
                        msg = "Are you sure that you want to delete amortization " + amortControlKey + "?";
                        if (MessageBox.Show(msg, "Confirm delete", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                        {
                            Application.DoEvents();
                            if (DeleteAmortization(amortControlKey))
                                LoadGrid();
                        }
                        break;
                    }
                case 3:
                    {
                        msg = "Are you sure that you want to recalculate all amortization for " + amortControlKey + "?";
                        if (MessageBox.Show(msg, "Confirm recalculation", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                        {
                            Application.DoEvents();
                            if (UpdateAmortization(amortControlKey))
                            {
                                MessageBox.Show("Amortization " + amortControlKey + " has been recalculated.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
                            }
                            LoadGrid();
                        }
                        break;
                    }
            }
       }

What I want to do is basically keep this existing functionality (though I'm open to changes in how I accomplish it if there's a beter way), but also add another column (cloumn called "Del2") that is DataGridViewCheckBoxColumn type. I want to then include a button in this same form but not in the data grid that will loop through the rows where the checkboxes are checked and eprform an action.

I have done the checkbox functionality in a data grid before (but without buttons and grd1_CellContentClick functions) and know how to make that work. However, when i added to this form that has buttons and grd1_CellContentClick functionality, every time i go to check a box on a given row it fires the grd1_CellContentClick from my code above (though due to it failing to be case 2 or case 3 nothing actually happens). When it finishes the grd1_CellContentClick the code then goes back to the form but the checkbox isn't checked. Note I have the checkboxcolumn set to ReadOnly = False so it's not that.

Is there a way i can make the grd1_CellContentClick ignore if I click in the checkbox column (i.e. not fire the grd1_CellContentClick at all when I check a checkbox) or is that going to happen no matter what? Conversely, how can I get the checkboxes to select properly when the grd1_CellContentClick fires each time? Or is there a way to take out the grd1_CellContentClick functionality altogether and come up with a more specific function for each column?

Thanks,

Ryan

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.