T
trint
Hi,
I have a dataGrid that when I try to add a row, I can't keep the data
separated into columns.
Here is what I tried to separate the columns (a coma):
string[] completeProductsString = new string[1000];
DataGridViewRowCollection rows = this.dataGridView1.Rows;
completeProductsString[j1] = productsString0[j1] + "," +
productsString1[j1];
rows.Add(completeProductsString[j1]);
Any help is appreciated.
Thanks,
Trint
I have a dataGrid that when I try to add a row, I can't keep the data
separated into columns.
Here is what I tried to separate the columns (a coma):
string[] completeProductsString = new string[1000];
DataGridViewRowCollection rows = this.dataGridView1.Rows;
completeProductsString[j1] = productsString0[j1] + "," +
productsString1[j1];
rows.Add(completeProductsString[j1]);
Any help is appreciated.
Thanks,
Trint