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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:19:01+00:00 2026-05-24T10:19:01+00:00

I want to take each row in a datagridview and add it to a

  • 0

I want to take each row in a datagridview and add it to a string variable that I will then print using a custom PrintDocument class. Everything in my program works, except for getting the data from the datagridview into the string variable. I can’t find an example on how to do this. Wouldn’t I just use a “foreach(DataRow Row in dataGridView1)…” to loop through the data table and add it to my string variable? Can someone show me an example of this?

Right now, my code looks like this, but it won’t compile (getting an error message on the way I’m trying to get the value from the column.row into the string. The error message is “The best overloaded method match for ‘System.Windows.Form.DataGridViewRowCollection.This[int]’ has some invalid arguments).:

        //Loop through the dataGridView1 and add it to the text
        //that we want to print
        foreach (DataRow row in dataGridView1.Rows)
        {
            textToPrint = textToPrint + dataGridView1.Rows[row][0].ToString() + "\t" +
                dataGridView1.Rows[row][1].ToString() + "\t" +
                dataGridView1.Rows[row][2].ToString() + "\t" +
                dataGridView1.Rows[row][3].ToString() + "\t";
        }
  • 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-24T10:19:03+00:00Added an answer on May 24, 2026 at 10:19 am

    I recommend a more generic method for doing this so you don’t have to rewrite it in the future. This will also be independent of how many columns you might have in your DataGridView.

        public static string DGVtoString(DataGridView dgv, char delimiter)
        {
            StringBuilder sb = new StringBuilder();
            foreach (DataGridViewRow row in dgv.Rows)
            {
                foreach (DataGridViewCell cell in row.Cells)
                {
                    sb.Append(cell.Value);
                    sb.Append(delimiter);
                }
                sb.Remove(sb.Length - 1, 1); // Removes the last delimiter 
                sb.AppendLine();
            }
            return sb.ToString();
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to find the centroid of each contour.for that i take some sample
I want to take a math expression that takes variables and print (assign to
I have a 2D matrix and I want to take norm of each row.
This should be an absurdly easy task: I want to take each line of
I want to take HTML form data and handle the submited data(string for example)
I want to take the values if the variable I define are not equal
I want to take advantage of the new features in Windows 7 using C#
I want to take all elements from each 2 rows if a checkbox is
I want to create a table, with each row containing some sort of weight.
I want to convert a List to a List so that each object on

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.