add column to datagridview on button click
add column to datagridview on button click
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.
Bhushan BhasmePosted Jun 16, 2015, 11:03 AM
{
if (dataGridView1.Columns.Count != 0)
{
DataGridViewColumn col = new DataGridViewTextBoxColumn();
}
}
Carlos kambuiPosted Jun 16, 2015, 10:37 AM