Hi, my code:
BindingSource.DataSource = Data;
BindingSource.DataMember = "Table";
grd.DataSource = BindingSource;
grd.TableDescriptor.Columns["customer"].HeaderText = "CUS.";
When load, it getting error "Object reference not set to an instance of an object."
I found that in "Table", column name is "Customer", not "customer", so how I use case insensitive ?
Thanhks!