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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:47:02+00:00 2026-05-23T00:47:02+00:00

I have a DataGridView on a winform. I am dynamically adding DatagridViewButtonColumn in the

  • 0

I have a DataGridView on a winform. I am dynamically adding DatagridViewButtonColumn in the load method of form with button name as btnAction and text displayed on it as “Process”.

So, every row in the grid would have this Process button in the last column.

On click event of this button, I am using a BackgroundWorker to call a method which does some calculations. Once the calculations are over, I need to update that clicked button’s text as “Processed” in that row in the grid. How do I achieve this please?

Thanks.

  • 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-23T00:47:03+00:00Added an answer on May 23, 2026 at 12:47 am

    You can set the Value of the cell in question and this will update the text.

    For this to work you must have also set the UseColumnTextForButtonValue property of the column to false;

    dataGridView[0,0].Value = "Processed";
    

    With that code you just need to change the column and row indexes to match your cell, or access the cell in some other way.

    This code sets your value but as you said you are doing this in a background worker you will need a little bit more code to set the text.

    The backgroundworker has an event RunWorkerCompleted which gets fired once the worker has completed. In your worker DoWork event handler just have your processing code:

    void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    {
        // Some long running processing
    }
    

    Then in your RunWorkerCompleted handler you have the setting of the value:

    void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    {
        dataGridView1[0,0].Value = "Processed";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a DataGridView on a winform. I am dynamically adding DatagridViewButtonColumn in the
Some data is displayed in a datagridview (Winform). I have a requirement to mail
Some event handlers for the WinForm DataGridView have DataGridViewCellEventArgs as a parameter and a
I have a DataGridView that I want to query using Linq (C# WinForm). I
I have a winform in vs2008 that contains a DataGridView. The datagrid contains a
I have a column Name Quote Price in a DataGridView winforms control. I can
I have datagridview on my winform. I am displaying records in the datagridview. Now
I have a winform datagridview and it forces the user to select by rows
This is a Winform C# question. I have a customized datagridview which is bound
I have a WinForm containing a DataGridView with a list of members in a

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.