I want to make a phone book and need to add contact information from text boxes to data grid view.
Below is my code
Problem with it is that each time after first row fills - it doesn't new rows anymore.
class information
{
public string firstname { get; set; }
public string surname { get; set; }
public int phonenumber { get; set; }
public int cellphone { get; set; }
public string email { get; set; }
}
how can use this class in my code?
DataTable dt = new DataTable();
DataRow dr;
dt.Columns.Add("Firstname");
dt.Columns.Add("Lastname");
dt.Columns.Add("PhoneNumber");
dr = dt.NewRow();
dr["Firstname"] = tb1.Text;
dr["Lastname"] = tb2.Text;
dr["PhoneNumber"] = tb3.Text;
dt.Rows.Add(dr);
dataGridView1.DataSource = dt;
Because of the lack of information provided, I am going to assume that the error you are getting is due to a new DataTable every time and replaced it in the DataGridView's datasource. What you really want to do is create only one DataTable, attach it to the DataSource and add to that table every time. See the code below