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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T00:55:38+00:00 2026-06-13T00:55:38+00:00

This way I can delete empty rows from one datagridview. bool Empty = true;

  • 0

This way I can delete empty rows from one datagridview.

bool Empty = true;

            for (int i = 0; i < PrimaryRadGridView.Rows.Count; i++)
            {
                Empty = true;
                for (int j = 0; j < PrimaryRadGridView.Columns.Count; j++)
                {
                    if (PrimaryRadGridView.Rows[i].Cells[j].Value != null && PrimaryRadGridView.Rows[i].Cells[j].Value.ToString() != "")
                    {
                        Empty = false;
                        break;
                    }
                }
                if (Empty)
                {
                    PrimaryRadGridView.Rows.RemoveAt(i);
                }
            }

I got around 6 datagridviews and I want to delete empty rows of all.

Is there a way to delete empty rows from all the datagridviews in the interface??

  • 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-13T00:55:39+00:00Added an answer on June 13, 2026 at 12:55 am

    You could create a method

    private void clearGrid(DataGridView view) {
        for (int row = 0; row < view.Rows.Count; ++row) {
            bool isEmpty = true;
            for (int col = 0; col < view.Columns.Count; ++col) {
                object value = view.Rows[row].Cells[col].Value;
                if (value != null && value.ToString().Length > 0) {
                    isEmpty = false;
                    break;
                }
            }
            if (isEmpty) {
                // deincrement (after the call) since we are removing the row
                view.Rows.RemoveAt(row--);
            }
        }
    }
    

    and pass each of your 6 DataGridViews to the method.

    clearGrid(PrimaryRadGridView);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In coffeescript we can do this way: rows = [ {a: 1} {b: 2}
I'm trying to get edit text to behave in this way: User can input
in what way can this be programmed. a UI box that displays random number
I know I can use this way to find the most frequent element in
Not sure if I can do it this way. I want to get current
I can get the current selected row in this way: private void DataGridView1_CellContentClick(object sender,
I can define default value in domain by this way : class ProcessingPriority {
Okay I'll try describe this the best way I can. I have a chat
I can calculate the size of the files in a tarfile in this way:
This is the best way I can think of phrasing this question, given this

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.