i want to show textbox record in datagridview?
i want to show textbox record in datagridview?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jitendra ShekhawatPosted Apr 8, 2017, 1:12 AM
Karthi KeyanPosted Apr 7, 2017, 11:55 PM
Madhanmohan DevarajanPosted Apr 7, 2017, 3:23 PM
dataGridView1.Columns.Add(Sno);
slno.Name = "Sno";
DataGridViewTextBoxColumn des = new DataGridViewTextBoxColumn();
dataGridView1.Columns.Add(Des);
des.Name = "Desc";
DataGridViewTextBoxColumn rate = new DataGridViewTextBoxColumn();
dataGridView1.Columns.Add(Rate);
rate.Name = "Rate";
DataGridViewTextBoxColumn qty = new DataGridViewTextBoxColumn();
dataGridView1.Columns.Add(Qty);
qty.Name = "Qty";
DataGridViewTextBoxColumn total = new DataGridViewTextBoxColumn();
dataGridView1.Columns.Add(Total);
total.Name = "Total";