End Google Ads 201810 - BS.net 01 --> Hello,
I need to add datagridviewcolumns in a loop. For example:

string[] default_columns { "VlFile", "EquipName", "JobName", "NickName", "Operator", "EquipmentStartTime", "JobComment", "EquipTypeDesc" };
foreach (string s in default_columns)
{
//Here i need to add the a column with the name in S
}


The columns need to be bounded. I have the bound source and all this but the problem is adding the columns.
It will loop me through the array (default_columns) and will add this columns.

How can i do it?
I mean there is a problem because i need to declare a variable