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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T11:32:00+00:00 2026-06-13T11:32:00+00:00

I am trying to format specified rows in DataGridView, but it keeps formatting all

  • 0

I am trying to format specified rows in DataGridView, but it keeps formatting all the rows in my DataGridView. This is what I am doing:

private void dgwParti_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
    {
        foreach (DeParti tmp in bnsParti)
        {
            if (tmp.Arti.Type == ArtiType.Fast)
            {
                if (e.ColumnIndex == 0 || e.ColumnIndex == 3 ||
                    e.ColumnIndex == 8 || e.ColumnIndex == 9)
                {
                    e.Value = "";
                }
            }
        }
    }

Using this type of code it keeps setting cell value to ” “, in all rows, but I only want that the value is ” “, when the Arti type is Fast. Any ideas.
Thanks in advance.

  • 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-13T11:32:01+00:00Added an answer on June 13, 2026 at 11:32 am

    If you have to format specified rows, why are you checking the columns??

    Access the DataBoundItem (the object associated with the row being formatted) and modify the Value according to your logic. Do not access the binding source directly.
    You code should be

    private void dgwParti_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
    {
        if ((Rows[e.RowIndex].DataBoundItem as DeParti).Arti.Type == ArtiType.Fast)
        {
             e.Value = "";
        }
    }
    

    This will “clean” all the cells in the row, you can add a check if you wish to set the Value=”” only on some Columns, for example

    private void dgwParti_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
    {
        if ((Rows[e.RowIndex].DataBoundItem as DeParti).Arti.Type == ArtiType.Fast
            && e.ColumnIndex == 8)
        {
             e.Value = "";
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to format my code with textmate indent option . but textmate
I'm trying to format a table from XML. Lets say I have this line
I'm trying to fill an ArrayList with the owner's emails. I'm doing this in
I'm trying to read the output of ps using a custom format specified with
Im trying to save a bitmap jpg format with a specified encoding quality. However
I have an matrix in this format that I am trying to validate and
I'm trying to parse a string in a specific format and I'm really surprised
I am trying to format some html output from my db using php and
I am trying to format a string to display two columns for a high
I'm trying to format a string to give me 2 characters for a number,

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.