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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:06:25+00:00 2026-06-13T12:06:25+00:00

I have a gridview with 2 column, one is a DataGridViewCheckBoxColumn named choose ,

  • 0

I have a gridview with 2 column, one is a DataGridViewCheckBoxColumn named “choose” , the other is an ordinary DataGridViewTextBoxColumn named “ID”… I want to change the text of a textbox immediately when the checked of chechkbox column changed …. but i don’t know which event should i use ….

     void SetTextBox()
     { 
         TextBox1.Text="";
         for (int i = 0; i < MyGrid.Rows.Count; i++)
            if (Convert.ToBoolean(MyGrid.Rows[i].Cells["choose"].Value) == true)
            {                    
                TextBox1.Text += MyGrid.Rows[i].Cells["ID"].Value.ToString()+",";                   
            }
     }

     private void !!!!which Event?!!!!(object sender, EventArgs e)
     {
          SetTextBox();
     }
  • 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-13T12:06:26+00:00Added an answer on June 13, 2026 at 12:06 pm

    There’s actually two events you need to deal with. Here’s an example adapted from the code I’m working on right now.

        private void dgvRMADetail_CurrentCellDirtyStateChanged(object sender, EventArgs e)
        {
            if (dgvRMADetail.CurrentCell is DataGridViewCheckBoxCell))
            {
                dgvRMADetail.CommitEdit(DataGridViewDataErrorContexts.Commit);
            }
        }
    
        private void dgvRMADetail_CellValueChanged(object sender, DataGridViewCellEventArgs e)
        {
            if (e.ColumnIndex == useRowCheckboxColumn.Index)
            {
               // Logic for doing whatever when the checkbox is checked.
            }
        }
    

    The first event tells it “Automatically commit this when it changes”, the second event is “When the value is committed, do something”.

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

Sidebar

Related Questions

I have one GridView with 3 Column and 3 Rows I want to change
I have a gridview with one column of checkboxes and other columns with different
I have a templated Gridview where I only want to display one column (Questions
I have a gridview, with some columns. I want to hide one column, but
In gridview's column i have a linkbutton and a label under it. I want
I have created a gridview with a column of checkboxes. I want the user
I have a gridview and sqldatasource. The default header text for each column is
I have a gridview with 3 columns, only one column is going to be
I have a gridview ...with multiple columns. If I click on one column, it
I have a gridview whose one column has value file name and that column

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.