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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T22:39:31+00:00 2026-06-12T22:39:31+00:00

I want to store details to a DataTable when a button is pressed and

  • 0

I want to store details to a DataTable when a button is pressed and display it on a DataGridView when the add button is pressed. How can I achieve this. Please help me. Thanks a lot.

I tried this code. But I need a way to bind it with the datagrid.

        DataRow dr;
        DataTable dt=new DataTable();

        dt.Columns.Add("LoginId", typeof(int));

        dt.Columns.Add("UserFirstName", typeof(string));
        dt.Columns.Add("LastName", typeof(string));

        dt.Columns.Add("Password", typeof(string));
        dt.Columns.Add("EmailId", typeof(string));

        dt.Columns.Add("Role", typeof(string));
        dt.Columns.Add("Description", typeof(string));

        dr = dt.NewRow();
  • 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-12T22:39:35+00:00Added an answer on June 12, 2026 at 10:39 pm

    You can add columns to the datatable as you need, and then add rows, like this:

        DataTable dt = new DataTable();
        int value = 0;
        private void Form1_Load(object sender, EventArgs e)
        {
            dataGridView1.AutoGenerateColumns = true;
    
            dt.Columns.AddRange(new DataColumn[]
                {
                    new DataColumn("column1", typeof(string)),
                    new DataColumn("column2", typeof(int)),
                });
        }
    
        private void button1_Click(object sender, EventArgs e)
        {
    
            dt.Rows.Add("str value", value++);
            dataGridView1.DataSource = dt;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to store a user setting(language). so i can get the corresponding resources
I want to store details about users.Every user will have user name,e-mail,password,address,city,country,and few other
I want to store the details of college courses in a (MySql) database but
I want to store login details on Rhodes. What should I do? Is there
I am developing a BlackBerry application. I want to store the details of multiple
I want to store my login details to retrieve back next time. Is it
I want to upload a mp3 and store song details in audio table and
Does anybody have any help,i am using an Arraylist to store details in a
Am developing one using nodejs scraping and mysql. I want to store details into
I want to store profile details encrypted within a database. However, some details should

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.